Update README.md
Browse files
README.md
CHANGED
|
@@ -31,8 +31,6 @@ This dataset card aims to be a base template for new datasets. It has been gener
|
|
| 31 |
|
| 32 |
<!-- Provide a longer summary of what this dataset is. -->
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
- **Curated by:** [More Information Needed]
|
| 37 |
- **Funded by [optional]:** [More Information Needed]
|
| 38 |
- **Shared by [optional]:** [More Information Needed]
|
|
@@ -51,6 +49,14 @@ This dataset card aims to be a base template for new datasets. It has been gener
|
|
| 51 |
|
| 52 |
<!-- Address questions around how the dataset is intended to be used. -->
|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
### Direct Use
|
| 55 |
|
| 56 |
<!-- This section describes suitable use cases for the dataset. -->
|
|
|
|
| 31 |
|
| 32 |
<!-- Provide a longer summary of what this dataset is. -->
|
| 33 |
|
|
|
|
|
|
|
| 34 |
- **Curated by:** [More Information Needed]
|
| 35 |
- **Funded by [optional]:** [More Information Needed]
|
| 36 |
- **Shared by [optional]:** [More Information Needed]
|
|
|
|
| 49 |
|
| 50 |
<!-- Address questions around how the dataset is intended to be used. -->
|
| 51 |
|
| 52 |
+
```python
|
| 53 |
+
from datasets import load_dataset
|
| 54 |
+
|
| 55 |
+
clinical_dataset = load_dataset("Lab-Rasool/TCGA", "clinical_data", split="train")
|
| 56 |
+
pathology_report_dataset = load_dataset("Lab-Rasool/TCGA", "pathology_report", split="train")
|
| 57 |
+
slide_dataset = load_dataset("Lab-Rasool/TCGA", "slide_image", split="train")
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
### Direct Use
|
| 61 |
|
| 62 |
<!-- This section describes suitable use cases for the dataset. -->
|