qanastek commited on
Commit
4ae65fa
1 Parent(s): d9255d7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -0
README.md CHANGED
@@ -1,3 +1,109 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - fr
7
+ tags:
8
+ - medical
9
+ - biology
10
+ pretty_name: MORFITT
11
+ size_categories:
12
+ - 1K<n<10K
13
  ---
14
+
15
+ # MORFITT
16
+
17
+ ## Data ([Zenodo](https://zenodo.org/record/7893841#.ZFLFDnZBybg)) | Publication ([arXiv](TODO) / [HAL](TODO) / [ACL Anthology](TODO))
18
+ [Yanis LABRAK](https://www.linkedin.com/in/yanis-labrak-8a7412145/), [Richard DUFOUR](https://cv.hal.science/richard-dufour), [Mickaël ROUVIER](https://cv.hal.science/mickael-rouvier)
19
+
20
+ [![](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/115EixHBcjf-se6xQeaTwZWE1i4idTNbm?usp=sharing) or [![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/qanastek/MORFITT/blob/main/TrainTransformers.py)
21
+
22
+ We introduce MORFITT, the first multi-label corpus for the classification of specialties in the medical field, in French. MORFITT is composed of 3,624 summaries of scientific articles from PubMed, annotated in 12 specialties. The article details the corpus, the experiments and the preliminary results obtained using a classifier based on the pre-trained language model CamemBERT.
23
+
24
+ ![overview](ddd)
25
+
26
+ For more details, please refer to our paper:
27
+
28
+ **MORFITT: A multi-label topic classification for French Biomedical literature** ([arXiv](ddd) / [HAL](ddd) / [ACL Anthology](ddd))
29
+
30
+
31
+ # Key Features
32
+
33
+ ## Documents distribution
34
+
35
+ | Train | Dev | Test |
36
+ |-------|-------|-------|
37
+ | 1,514 | 1,022 | 1,088 |
38
+
39
+ ## Multi-label distribution
40
+
41
+ | | Train | Dev | Test | Total |
42
+ |:----------------------:|:--------------:|:--------------:|:--------------:|:--------------:|
43
+ | Vétérinaire | 320 | 250 | 254 | 824 |
44
+ | Étiologie | 317 | 202 | 222 | 741 |
45
+ | Psychologie | 255 | 175 | 179 | 609 |
46
+ | Chirurgie | 223 | 169 | 157 | 549 |
47
+ | Génétique | 207 | 139 | 159 | 505 |
48
+ | Physiologie | 217 | 125 | 148 | 490 |
49
+ | Pharmacologie | 112 | 84 | 103 | 299 |
50
+ | Microbiologie | 115 | 72 | 86 | 273 |
51
+ | Immunologie | 106 | 86 | 70 | 262 |
52
+ | Chimie | 94 | 53 | 65 | 212 |
53
+ | Virologie | 76 | 57 | 67 | 200 |
54
+ | Parasitologie | 68 | 34 | 50 | 152 |
55
+ | Total | 2,110 | 1,446 | 1,560 | 5,116 |
56
+
57
+
58
+ ## Number of labels per document distribution
59
+
60
+ <p align="left">
61
+ <img src="https://github.com/qanastek/MORFITT/raw/main/images/distributions_nbr_elements_colors.png" alt="drawing" width="400"/>
62
+ </p>
63
+
64
+ ## Co-occurences distribution
65
+
66
+ <p align="left">
67
+ <img src="https://github.com/qanastek/MORFITT/raw/main/images/distributions_co-references-fixed.png" alt="drawing" width="400"/>
68
+ </p>
69
+
70
+ # If you use HuggingFace Transformers
71
+
72
+ ```python
73
+ from datasets import load_dataset
74
+ dataset = load_dataset("qanastek/MORFITT")
75
+ print(dataset)
76
+ ```
77
+
78
+ or
79
+
80
+ ```python
81
+ from datasets import load_dataset
82
+ dataset_base = load_dataset(
83
+ 'csv',
84
+ data_files={
85
+ 'train': f"./train.tsv",
86
+ 'validation': f"./dev.tsv",
87
+ 'test': f"./test.tsv",
88
+ },
89
+ delimiter="\t",
90
+ )
91
+ ```
92
+
93
+ # License and Citation
94
+
95
+ The code is under [Apache-2.0 License](./LICENSE).
96
+
97
+ The MORFITT dataset is licensed under *Creative Commons Attribution 4.0 International* ([CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)).
98
+ If you find this project useful in your research, please cite the following papers:
99
+
100
+ ```plain
101
+ Yanis LABRAK & al. (COMMING SOON)
102
+ ```
103
+
104
+ or using the bibtex:
105
+
106
+ ```bibtex
107
+ @article{MORFITT,
108
+ }
109
+ ```