Commit ·
df1bb86
1
Parent(s): 13a51fb
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,5 +20,15 @@ and install the Python client.
|
|
| 20 |
```
|
| 21 |
pip install synapseclient
|
| 22 |
export SYNAPSE_AUTH_TOKEN=<Access Token here>
|
|
|
|
|
|
|
|
|
|
| 23 |
synapse get -r syn51520473
|
| 24 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
```
|