ywchoi commited on
Commit
4472d61
·
verified ·
1 Parent(s): 9333193

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - medical
6
+ - biology
7
+ ---
8
+ # OpenMedText Dataset
9
+
10
+ A comprehensive biomedical text corpus consisting of MDPI journal articles and open-source medical textbooks for language model training and research.
11
+
12
+ ## Dataset Summary
13
+
14
+ **OpenMedText** is a large-scale biomedical text dataset that includes:
15
+ - **Med-MDPI**: 121,489 biomedical journal articles across 37 categories from MDPI journals
16
+ - **Med-Textbooks**: 29 open-source medical textbooks covering various medical disciplines
17
+
18
+ ## Folder Structure
19
+
20
+ ```
21
+ OpenMedText/
22
+ ├── Med-MDPI/ # All under CC BY 4.0 license
23
+ │ ├── Allergies/
24
+ │ ├── Antibiotics/
25
+ │ ├── Antibodies/
26
+ │ └── ... # More journal categories
27
+
28
+ └── Med-Textbooks/ # Organized by license type
29
+ ├── CC-BY/ # CC BY 4.0 and CC BY licensed books
30
+ ├── CC-BY-SA/ # CC BY-SA 4.0, 3.0, 2.0 books
31
+ ├── CC-BY-NC/ # CC BY-NC 4.0, 3.0 books
32
+ └── CC-BY-NC-SA/ # CC BY-NC-SA 4.0, 3.0, 2.0 books
33
+ ```
34
+
35
+ ## Licenses
36
+
37
+ This dataset includes materials with different licenses:
38
+
39
+ 1. **Med-MDPI**: All journal articles are under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.
40
+
41
+ 2. **Med-Textbooks**: Textbooks have various licenses:
42
+ - **CC BY**: [Creative Commons Attribution](https://creativecommons.org/licenses/by/4.0/)
43
+ - **CC BY-SA**: [Creative Commons Attribution-ShareAlike](https://creativecommons.org/licenses/by-sa/4.0/)
44
+ - **CC BY-NC**: [Creative Commons Attribution-NonCommercial](https://creativecommons.org/licenses/by-nc/4.0/)
45
+ - **CC BY-NC-SA**: [Creative Commons Attribution-NonCommercial-ShareAlike](https://creativecommons.org/licenses/by-nc-sa/4.0/)
46
+
47
+ Please respect the license of each component when using this dataset.
48
+
49
+ ## Intended Uses
50
+
51
+ The OpenMedText dataset is designed for:
52
+ - Training and fine-tuning language models for biomedical applications
53
+
54
+ ## Dataset Creation
55
+
56
+ ### Data Sources
57
+ - **Med-MDPI**: Articles from 37 MDPI (Multidisciplinary Digital Publishing Institute) journal categories
58
+ - **Med-Textbooks**: 29 open-source medical textbooks selected to provide structured medical knowledge
59
+
60
+ ### Data Selection Criteria
61
+ The dataset was curated to provide broad coverage of biomedical subjects while ensuring all content is openly accessible. Textbooks were specifically selected to provide structured medical knowledge organized for educational purposes.
62
+
63
+ ## Citation
64
+
65
+ If you use this dataset in your research, please cite:
66
+
67
+ ```
68
+ @inproceedings{
69
+ choi2025teaching,
70
+ title={Teaching {LLM}s How To Learn with Contextual Fine-Tuning},
71
+ author={Younwoo Choi and Muhammad Adil Asif and Ziwen Han and John Willes and Rahul Krishnan},
72
+ booktitle={The Thirteenth International Conference on Learning Representations},
73
+ year={2025},
74
+ url={https://openreview.net/forum?id=FS2nukC2jv}
75
+ }
76
+ ```