kunikohunter commited on
Commit
a0223be
·
verified ·
1 Parent(s): 518db4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -5
README.md CHANGED
@@ -184,14 +184,23 @@ pip install datasets
184
  ### Load a subset
185
 
186
  ```python
187
- from datasets import load_dataset
188
 
189
  # Options: "kcat", "km", "ki"
190
- ds = load_dataset("kunikohunter/CatPred-DB", "kcat")
191
 
192
- train = ds["train"]
193
- val = ds["validation"]
194
- test = ds["test"]
 
 
 
 
 
 
 
 
 
195
  ```
196
 
197
  ---
 
184
  ### Load a subset
185
 
186
  ```python
187
+ >>>from datasets import load_dataset
188
 
189
  # Options: "kcat", "km", "ki"
190
+ >>>ds = load_dataset("kunikohunter/CatPred-DB", "kcat")
191
 
192
+ >>>train = ds["train"]
193
+ >>>val = ds["validation"]
194
+ >>>test = ds["test"]
195
+ ```
196
+
197
+ ```
198
+ kcat-random_train.csv: 100%|█████████████████████████████████████████████████████████████████████████████████████████████| 28.0M/28.0M [00:04<00:00, 6.29MB/s]
199
+ kcat-random_trainval.csv: 100%|██████████████████████████████████████████████████████████████████████████████████████████| 31.1M/31.1M [00:04<00:00, 6.81MB/s]
200
+ kcat-random_trainvaltest.csv: 100%|██████████████████████████████████████████████████████████████████████████████████████| 34.5M/34.5M [00:05<00:00, 6.86MB/s]
201
+ Generating train split: 100%|█████████████████████████████████████████████████████████████████████████████████| 18789/18789 [00:00<00:00, 67580.51 examples/s]
202
+ Generating validation split: 100%|████████████████████████████████████████████████████████████████████████████| 20877/20877 [00:00<00:00, 78951.22 examples/s]
203
+ Generating test split: 100%|██████████████████████████████████████████████████████████████████████████████████| 23197/23197 [00:00<00:00, 74253.91 examples/s]
204
  ```
205
 
206
  ---