Update README.md
Browse files
README.md
CHANGED
@@ -13,6 +13,16 @@ tags:
|
|
13 |
|
14 |
This repo contains ctgov data used in "Panacea: A foundation model for clinical trial search, summarization, design, and recruitment".
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
## Citation
|
17 |
|
18 |
If you find our work useful, please consider citing Panacea:
|
|
|
13 |
|
14 |
This repo contains ctgov data used in "Panacea: A foundation model for clinical trial search, summarization, design, and recruitment".
|
15 |
|
16 |
+
## Load the dataset
|
17 |
+
```[bash]
|
18 |
+
pip install -U datasets fsspec
|
19 |
+
```
|
20 |
+
|
21 |
+
```[python]
|
22 |
+
from datasets import load_dataset
|
23 |
+
ds = load_dataset('linjc16/ctgov', split='train')
|
24 |
+
```
|
25 |
+
|
26 |
## Citation
|
27 |
|
28 |
If you find our work useful, please consider citing Panacea:
|