Update submissions page
Browse files- src/about.py +1 -3
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
|
@@ -56,8 +56,6 @@ 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 |
-
Note: make sure your model is public.
|
61 |
"""
|
62 |
EVALUATION_SCRIPT = ''
|
63 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
|
|
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
|
|
|
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"
|