Update README.md
Browse files
README.md
CHANGED
@@ -28,13 +28,13 @@ size_categories:
|
|
28 |
git clone "https://github.com/FreedomIntelligence/CMB.git" && cd CMB && unzip "./data/CMB.zip" -d "./data/" && rm "./data/CMB.zip"
|
29 |
```
|
30 |
- Or Check out [HuggingFace datasets](https://huggingface.co/datasets/FreedomIntelligence/CMB) to load our data as follows:
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
|
39 |
|
40 |
|
|
|
28 |
git clone "https://github.com/FreedomIntelligence/CMB.git" && cd CMB && unzip "./data/CMB.zip" -d "./data/" && rm "./data/CMB.zip"
|
29 |
```
|
30 |
- Or Check out [HuggingFace datasets](https://huggingface.co/datasets/FreedomIntelligence/CMB) to load our data as follows:
|
31 |
+
```python
|
32 |
+
from datasets import load_dataset
|
33 |
+
# CMB-Exam datasets (multiple-choice and multiple-answer questions)
|
34 |
+
exam_datasets = load_dataset('FreedomIntelligence/CMB','exam')
|
35 |
+
# CMB-Clin datasets
|
36 |
+
clin_datasets = load_dataset('FreedomIntelligence/CMB','clin')
|
37 |
+
```
|
38 |
|
39 |
|
40 |
|