thomasyu888 commited on
Commit
ced216a
·
1 Parent(s): 5c2759b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -6
README.md CHANGED
@@ -20,15 +20,11 @@ and install the Python client.
20
  ```
21
  pip install synapseclient
22
  export SYNAPSE_AUTH_TOKEN=<Access Token here>
23
-
24
- mkdir data
25
- cd data
26
- synapse get -r syn51520473
27
  ```
28
 
29
- Install datasets
30
 
31
  ```python
32
  from datasets import load_dataset
33
- dataset = load_dataset('SageBio/testdataset', split='train', data_dir="data/")
34
  ```
 
20
  ```
21
  pip install synapseclient
22
  export SYNAPSE_AUTH_TOKEN=<Access Token here>
 
 
 
 
23
  ```
24
 
25
+ Load the dataset using the huggingface datasets Python API
26
 
27
  ```python
28
  from datasets import load_dataset
29
+ dataset = load_dataset('SageBio/testdataset', split='train')
30
  ```