Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1 |
-
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
```
|
4 |
from datasets import load_dataset
|
5 |
pubmed_dataset = load_dataset("hwang2006/PUBMED_title_abstracts_2020_baseline", split="train")
|
|
|
1 |
+
This PUBMED Dataset was created based on the The [PubMed Abstract GitHub Site](https://github.com/thoppe/The-Pile-PubMed) and uploaded on the Hugging Face.
|
2 |
|
3 |
+
- The PUBMED dataset reproduced
|
4 |
+
```
|
5 |
+
$git clone https://github.com/thoppe/The-Pile-PubMed.git
|
6 |
+
$cd The-Pile-PubMed/
|
7 |
+
$python P0_download_listing.py
|
8 |
+
$python P1_download_baseline.py
|
9 |
+
$python P2_parse.py
|
10 |
+
$python P3_build_final_LM_dataset.py
|
11 |
+
```
|
12 |
+
|
13 |
+
- Load Dataset
|
14 |
```
|
15 |
from datasets import load_dataset
|
16 |
pubmed_dataset = load_dataset("hwang2006/PUBMED_title_abstracts_2020_baseline", split="train")
|