InMedData commited on
Commit
439517f
·
verified ·
1 Parent(s): 5c8130b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -33,11 +33,21 @@ The dataset was collected through the PubMed API, based on the names of heart-re
33
  | title | string | The title of the paper. |
34
  | abst | string | The abstract of the paper. |
35
 
36
- ### Use
37
 
 
38
 
39
  ```python
 
 
 
 
 
 
 
 
 
40
 
 
41
  from datasets import load_dataset
42
 
43
  dataset = load_dataset("InMedData/Cardio_v1")
 
33
  | title | string | The title of the paper. |
34
  | abst | string | The abstract of the paper. |
35
 
 
36
 
37
+ ## Dataset Structure
38
 
39
  ```python
40
+ DatasetDict({
41
+ train: Dataset({
42
+ features: ['title', 'abst'],
43
+ num_rows: 2600900
44
+ })
45
+ })
46
+ ```
47
+
48
+ ## Use
49
 
50
+ ```python
51
  from datasets import load_dataset
52
 
53
  dataset = load_dataset("InMedData/Cardio_v1")