Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,36 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-sa-4.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- biology
|
7 |
+
- medical
|
8 |
+
size_categories:
|
9 |
+
- 100K<n<1M
|
10 |
---
|
11 |
+
|
12 |
+
# Dataset Card
|
13 |
+
|
14 |
+
<!-- Provide a quick summary of the dataset. -->
|
15 |
+
|
16 |
+
This dataset consists of abstracts from heart-related papers collected from PubMed. It can be used for pre-training a language model specialized in cardiology.
|
17 |
+
The dataset was collected through the PubMed API, based on the names of heart-related journals and a glossary of cardiology terms.
|
18 |
+
|
19 |
+
### Dataset Sources
|
20 |
+
- **Repository:** [Pubmed](https://huggingface.co/datasets/microsoft/orca-math-word-problems-200k)
|
21 |
+
- **Journal list:** [Scimago Journal & Country Rank](https://www.scimagojr.com/journalrank.php?category=2705#google_vignette)
|
22 |
+
- **Glossary:** [National Institutes of Health](https://www.nia.nih.gov/health/heart-health/heart-health-glossary)
|
23 |
+
[The Texas Heart Institute](https://www.texasheart.org/heart-health/heart-information-center/topics/a-z)
|
24 |
+
- [Aiken Physicians Alliance](https://aikenphysicians.com/services/cardiology/cardiology-glossary-of-terms)
|
25 |
+
|
26 |
+
### Use
|
27 |
+
|
28 |
+
|
29 |
+
```python
|
30 |
+
|
31 |
+
from datasets import load_dataset
|
32 |
+
|
33 |
+
dataset = load_dataset("stevhliu/demo")
|
34 |
+
```
|
35 |
+
|
36 |
+
|