Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -33,10 +33,10 @@ This dataset contains a collection of scientific articles related to **Alzheimer
|
|
| 33 |
|
| 34 |
## Data Sources and Annotation Tools
|
| 35 |
|
| 36 |
-
-
|
| 37 |
-
-
|
| 38 |
-
- **TaggerOne**
|
| 39 |
-
- **
|
| 40 |
|
| 41 |
These tools are widely used in biomedical NLP for tagging mentions of diseases, genes, and species within PubMed articles.
|
| 42 |
|
|
@@ -65,7 +65,6 @@ The dataset has been simplified:
|
|
| 65 |
|
| 66 |
* Original nested structures were flattened
|
| 67 |
* Tuples were converted to JSON-compliant lists
|
| 68 |
-
* All text content was lowercased for consistency
|
| 69 |
* Only `title` and `abstract` sections are currently included
|
| 70 |
|
| 71 |
## Future Work
|
|
@@ -78,7 +77,7 @@ The dataset has been simplified:
|
|
| 78 |
```python
|
| 79 |
from datasets import load_dataset
|
| 80 |
|
| 81 |
-
dataset = load_dataset("
|
| 82 |
```
|
| 83 |
|
| 84 |
## License
|
|
|
|
| 33 |
|
| 34 |
## Data Sources and Annotation Tools
|
| 35 |
|
| 36 |
+
- Entity annotations were generated using NCBI's standard models and API calls to the **PubTator3 API**:
|
| 37 |
+
- **TaggerOne** and **GNORM** for `gene_species_tagged_articles.json`
|
| 38 |
+
- **TaggerOne** alone for `disease_tagged_articles.json`
|
| 39 |
+
- **PubTator3 API** for 'converted_from_bioc.json'
|
| 40 |
|
| 41 |
These tools are widely used in biomedical NLP for tagging mentions of diseases, genes, and species within PubMed articles.
|
| 42 |
|
|
|
|
| 65 |
|
| 66 |
* Original nested structures were flattened
|
| 67 |
* Tuples were converted to JSON-compliant lists
|
|
|
|
| 68 |
* Only `title` and `abstract` sections are currently included
|
| 69 |
|
| 70 |
## Future Work
|
|
|
|
| 77 |
```python
|
| 78 |
from datasets import load_dataset
|
| 79 |
|
| 80 |
+
dataset = load_dataset("AbrehamT/tagged_articles")
|
| 81 |
```
|
| 82 |
|
| 83 |
## License
|