Update README.md
Browse filesAdd summary and usage instructions
README.md
CHANGED
@@ -105,3 +105,23 @@ configs:
|
|
105 |
- split: train
|
106 |
path: strains/train-*
|
107 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
- split: train
|
106 |
path: strains/train-*
|
107 |
---
|
108 |
+
|
109 |
+
# Dataset Summary
|
110 |
+
|
111 |
+
**TEA – Pathogen Identifier & Strain Tagger** is a curated biomedical corpus with
|
112 |
+
505 full-text articles curated for human microbial pathogens and 400 articles on microbial strains.
|
113 |
+
Over 3,500 entity spans are annotated in IOB2 format.
|
114 |
+
|
115 |
+
**Usage**
|
116 |
+
```python
|
117 |
+
from datasets import load_dataset
|
118 |
+
pathogens_ds = load_dataset("tznurmin/tea_curated", "pathogens", split="train")
|
119 |
+
strains_ds = load_dataset("tznurmin/tea_curated", "strains", split="train")
|
120 |
+
print(pathogens_ds[152])
|
121 |
+
print(len(strains_ds))
|
122 |
+
```
|
123 |
+
|
124 |
+
## More information
|
125 |
+
|
126 |
+
<https://github.com/tznurmin/TEA_curated_data>
|
127 |
+
|