Update README.md
Browse filesDataset loading example
README.md
CHANGED
@@ -2,8 +2,14 @@
|
|
2 |
license: afl-3.0
|
3 |
---
|
4 |
|
|
|
|
|
5 |
An adaptation of [eHealth-KD Challenge 2020 dataset](https://knowledge-learning.github.io/ehealthkd-2020/), filtered only for the task of NER. Some adaptation of the original dataset have been made:
|
6 |
|
7 |
- BIO annotations
|
8 |
- Errors fixing
|
9 |
- Overlapped entities has been processed as a unique entity
|
|
|
|
|
|
|
|
|
|
2 |
license: afl-3.0
|
3 |
---
|
4 |
|
5 |
+
## Description
|
6 |
+
|
7 |
An adaptation of [eHealth-KD Challenge 2020 dataset](https://knowledge-learning.github.io/ehealthkd-2020/), filtered only for the task of NER. Some adaptation of the original dataset have been made:
|
8 |
|
9 |
- BIO annotations
|
10 |
- Errors fixing
|
11 |
- Overlapped entities has been processed as a unique entity
|
12 |
+
|
13 |
+
## Dataset loading
|
14 |
+
|
15 |
+
datasets = load_dataset('json', data_files={'train': ['@YOUR_PATH@/training_anns_bio.json'], 'testing': ['@YOUR_PATH@/testing_anns_bio.json'], 'validation': ['@YOUR_PATH@/development_anns_bio.json']})
|