rntc commited on
Commit
982d0bb
·
verified ·
1 Parent(s): fecd8f5

Initialize results dataset

Browse files
Files changed (2) hide show
  1. README.md +39 -0
  2. sample_results.json +19 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # French Medical NLP Leaderboard - Results Dataset
2
+
3
+ This dataset contains evaluation results for the French Medical NLP Leaderboard.
4
+
5
+ ## Results Format
6
+
7
+ Each results file should be a JSON file with the following structure:
8
+
9
+ ```json
10
+ {
11
+ "config": {
12
+ "model_dtype": "float16",
13
+ "model_name": "model_name",
14
+ "model_sha": "revision"
15
+ },
16
+ "results": {
17
+ "emea_ner": {
18
+ "f1": 0.85,
19
+ "precision": 0.83,
20
+ "recall": 0.87
21
+ },
22
+ "medline_ner": {
23
+ "f1": 0.82,
24
+ "precision": 0.80,
25
+ "recall": 0.84
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Tasks
32
+ - `emea_ner`: French medical NER on EMEA texts
33
+ - `medline_ner`: French medical NER on MEDLINE abstracts
34
+
35
+ ## Metrics
36
+ All metrics use seqeval with IOB2 scheme:
37
+ - `f1`: Micro F1 score
38
+ - `precision`: Micro precision
39
+ - `recall`: Micro recall
sample_results.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "model_dtype": "float16",
4
+ "model_name": "almanach/camembert-bio-base",
5
+ "model_sha": "main"
6
+ },
7
+ "results": {
8
+ "emea_ner": {
9
+ "f1": 0.006,
10
+ "precision": 0.0035,
11
+ "recall": 0.0198
12
+ },
13
+ "medline_ner": {
14
+ "f1": 0.0089,
15
+ "precision": 0.0051,
16
+ "recall": 0.0234
17
+ }
18
+ }
19
+ }