Initialize requests dataset
Browse files- README.md +28 -0
- sample_request.json +12 -0
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# French Medical NLP Leaderboard - Requests Dataset
|
2 |
+
|
3 |
+
This dataset contains evaluation requests for the French Medical NLP Leaderboard.
|
4 |
+
|
5 |
+
## Request Format
|
6 |
+
|
7 |
+
Each request file should be a JSON file with the following structure:
|
8 |
+
|
9 |
+
```json
|
10 |
+
{
|
11 |
+
"model": "model_name",
|
12 |
+
"revision": "main",
|
13 |
+
"precision": "float16",
|
14 |
+
"weight_type": "Original",
|
15 |
+
"status": "PENDING",
|
16 |
+
"submitted_time": "2024-01-01T00:00:00",
|
17 |
+
"model_type": "🟢 pretrained",
|
18 |
+
"likes": 0,
|
19 |
+
"params": 0.11,
|
20 |
+
"license": "mit"
|
21 |
+
}
|
22 |
+
```
|
23 |
+
|
24 |
+
## Status Values
|
25 |
+
- `PENDING`: Waiting for evaluation
|
26 |
+
- `RUNNING`: Currently being evaluated
|
27 |
+
- `FINISHED`: Evaluation completed successfully
|
28 |
+
- `FAILED`: Evaluation failed
|
sample_request.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": "almanach/camembert-bio-base",
|
3 |
+
"revision": "main",
|
4 |
+
"precision": "float16",
|
5 |
+
"weight_type": "Original",
|
6 |
+
"status": "PENDING",
|
7 |
+
"submitted_time": "2025-07-17T17:09:55.872418",
|
8 |
+
"model_type": "\ud83d\udfe2 pretrained",
|
9 |
+
"likes": 0,
|
10 |
+
"params": 0.11,
|
11 |
+
"license": "mit"
|
12 |
+
}
|