--- license: cc-by-nc-sa-4.0 language: - en tags: - biology - medical size_categories: - 100K 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. The dataset was collected through the PubMed API, based on the names of heart-related journals and a glossary of cardiology terms. # Dataset ## Data Sources - **[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. - **[Wikipedia](https://www.wikipedia.org/)**: Wikipedia is an internet encyclopedia that anyone can edit and is maintained through collaboration. ## Keywords Sources - **[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. - **[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. - **[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. - **[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. ## Dataset Field | Field | Data Type | Description | | --- | --- | --- | | title | string | The title of the paper. | | abst | string | The abstract of the paper. | ## Dataset Structure ```python DatasetDict({ train: Dataset({ features: ['title', 'abst'], num_rows: 2761083 }) }) ``` ## Use ```python from datasets import load_dataset dataset = load_dataset("InMedData/Cardio_v2") ``` ### Dataset Contact khs1220@inmed-data.com