Spaces:
Sleeping
Sleeping
- src/about.py +3 -2
src/about.py
CHANGED
@@ -73,13 +73,14 @@ EVALUATION_QUEUE_TEXT = """
|
|
73 |
## Evaluation Queue
|
74 |
|
75 |
To add your model to the evaluation queue, please submit a file with your model predictions with the id and predicted options. The file should be in the following format:
|
76 |
-
|
77 |
[
|
78 |
{"id": "0", "prediction": ["A"]},
|
79 |
{"id": "1", "prediction": ["B"]},
|
80 |
{"id": "2", "prediction": ["A", "C"]},
|
81 |
...
|
82 |
-
]
|
|
|
83 |
|
84 |
Make sure to include the following information in your submission:
|
85 |
- Model name
|
|
|
73 |
## Evaluation Queue
|
74 |
|
75 |
To add your model to the evaluation queue, please submit a file with your model predictions with the id and predicted options. The file should be in the following format:
|
76 |
+
```
|
77 |
[
|
78 |
{"id": "0", "prediction": ["A"]},
|
79 |
{"id": "1", "prediction": ["B"]},
|
80 |
{"id": "2", "prediction": ["A", "C"]},
|
81 |
...
|
82 |
+
]
|
83 |
+
```
|
84 |
|
85 |
Make sure to include the following information in your submission:
|
86 |
- Model name
|