DavideGalli commited on
Commit
8a646f2
·
verified ·
1 Parent(s): 4c3a7c8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -30,12 +30,12 @@ The code for DLaTA is publicly available on [GitHub](https://github.com/hardware
30
 
31
  ## How to Download
32
 
33
- 1. Download dataset.
34
-
35
  ```python
36
- from datasets import load_dataset
37
 
38
- dataset = load_dataset("hardware-fab/DFS_DESYNCH")
39
  ```
40
 
41
  2. Assemble dataset chunks in one (virtual) dataset file.
@@ -44,7 +44,7 @@ The code for DLaTA is publicly available on [GitHub](https://github.com/hardware
44
  python assemble.py --dataset_dir <download_path>
45
  ```
46
 
47
- Replace `<download_path>` with the actual download path.
48
 
49
  ## Dataset Structure
50
 
 
30
 
31
  ## How to Download
32
 
33
+ 1. Download dataset.
34
+ ⚠ **WARNING**: Full dataset requires 205 GB of space.
35
  ```python
36
+ from huggingface_hub import snapshot_download
37
 
38
+ snapshot_download(repo_id="hardware-fab/DFS_DESYNCH", repo_type="dataset", local_dir="<download_path>")
39
  ```
40
 
41
  2. Assemble dataset chunks in one (virtual) dataset file.
 
44
  python assemble.py --dataset_dir <download_path>
45
  ```
46
 
47
+ Replace `<download_path>` with the actual download path. The `assemble.py` script is downloaded along with the data.
48
 
49
  ## Dataset Structure
50