brunneis commited on
Commit
2b85454
·
unverified ·
1 Parent(s): 9e6e437

Update submissions page

Browse files
Files changed (1) hide show
  1. src/about.py +2 -2
src/about.py CHANGED
@@ -47,7 +47,7 @@ To reproduce our results, here is the commands you can run:
47
  EVALUATION_REQUESTS_TEXT = """
48
  # ✔️ Check your model
49
 
50
- Make sure you can load your model and tokenizer using `AutoClasses`:
51
 
52
  ```python
53
  from transformers import AutoConfig, AutoModel, AutoTokenizer
@@ -55,7 +55,7 @@ config = AutoConfig.from_pretrained("your model name", revision=revision)
55
  model = AutoModel.from_pretrained("your model name", revision=revision)
56
  tokenizer = AutoTokenizer.from_pretrained("your model name", revision=revision)
57
  ```
58
- If this step fails, follow the error messages to debug your model before submitting it. It's likely your model has been improperly uploaded.
59
  """
60
  EVALUATION_SCRIPT = ''
61
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
 
47
  EVALUATION_REQUESTS_TEXT = """
48
  # ✔️ Check your model
49
 
50
+ Make sure that you can load your model and tokenizer using `AutoClasses`:
51
 
52
  ```python
53
  from transformers import AutoConfig, AutoModel, AutoTokenizer
 
55
  model = AutoModel.from_pretrained("your model name", revision=revision)
56
  tokenizer = AutoTokenizer.from_pretrained("your model name", revision=revision)
57
  ```
58
+ If this step fails, follow the error messages to debug your model before submitting it. It's likely that your model has been improperly uploaded.
59
  """
60
  EVALUATION_SCRIPT = ''
61
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"