InMedData commited on
Commit
861e270
·
verified ·
1 Parent(s): 4fefead

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md CHANGED
@@ -1,3 +1,59 @@
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
20
+
21
+ ## Data Sources
22
+ - **[Pubmed](https://pubmed.ncbi.nlm.nih.gov/)**: PubMed is a database that provides abstracts of research papers related to life sciences, biomedical fields, health psychology, and health and welfare. Among these, we have collected abstracts of papers related to the heart.
23
+ - **[Wikipedia](https://www.wikipedia.org/)**: Wikipedia is an internet encyclopedia that anyone can edit and is maintained through collaboration.
24
+
25
+
26
+ ## Keywords Sources
27
+ - **[Scimago Journal & Country Rank](https://www.scimagojr.com/journalrank.php?category=2705#google_vignette)** : We used a list of cardiology-related journals provided by SJR as keywords for data collection.
28
+ - **[National Institutes of Health](https://www.nia.nih.gov/health/heart-health/heart-health-glossary)** : We used a glossary provided by NIH as keywords for data collection.
29
+ - **[The Texas Heart Institute](https://www.texasheart.org/heart-health/heart-information-center/topics/a-z)** : We used a glossary provided by Texas Heart Institute as keywords for data collection.
30
+ - **[Aiken Physicians Alliance](https://aikenphysicians.com/services/cardiology/cardiology-glossary-of-terms)** : We used a glossary provided by Aiken Physicians Alliance as keywords for data collection.
31
+ ## Dataset Field
32
+
33
+ | Field | Data Type | Description |
34
+ | --- | --- | --- |
35
+ | title | string | The title of the paper. |
36
+ | abst | string | The abstract of the paper. |
37
+
38
+
39
+ ## Dataset Structure
40
+
41
+ ```python
42
+ DatasetDict({
43
+ train: Dataset({
44
+ features: ['title', 'abst'],
45
+ num_rows: 2600900
46
+ })
47
+ })
48
+ ```
49
+
50
+ ## Use
51
+
52
+ ```python
53
+ from datasets import load_dataset
54
+
55
+ dataset = load_dataset("InMedData/Cardio_v2")
56
+ ```
57
+ ### Dataset Contact
58
+
59