---
license: apache-2.0
task_categories:
- text-classification
language:
- fr
tags:
- medical
- biology
pretty_name: MORFITT
size_categories:
- 1K
## Co-occurences distribution
# If you use HuggingFace Transformers
```python
from datasets import load_dataset
dataset = load_dataset("qanastek/MORFITT")
print(dataset)
```
or
```python
from datasets import load_dataset
dataset_base = load_dataset(
'csv',
data_files={
'train': f"./train.tsv",
'validation': f"./dev.tsv",
'test': f"./test.tsv",
},
delimiter="\t",
)
```
# License and Citation
The code is under [Apache-2.0 License](./LICENSE).
The MORFITT dataset is licensed under *Creative Commons Attribution 4.0 International* ([CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)).
If you find this project useful in your research, please cite the following papers:
```plain
Yanis LABRAK & al. (COMMING SOON)
```
or using the bibtex:
```bibtex
@article{MORFITT,
}
```