Alan Zhao commited on
Commit
d1b471e
·
1 Parent(s): 16721d7
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -81,6 +81,27 @@ For more details on operations of the paper, checkout our GitHub repository and
81
 
82
  Checkout our [Colab](https://colab.research.google.com/drive/1MmO9w1y59Gy6ds0iKlW04olszGko56Vf?usp=sharing) for a step-by-step tutorial!
83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  ## Citation
85
 
86
  MIT License.
 
81
 
82
  Checkout our [Colab](https://colab.research.google.com/drive/1MmO9w1y59Gy6ds0iKlW04olszGko56Vf?usp=sharing) for a step-by-step tutorial!
83
 
84
+ ## Download and unpack
85
+
86
+ Download either with the web interface or using the python interface:
87
+ ```sh
88
+ pip install huggingface_hub
89
+ ```
90
+
91
+ then inside a python script or in ipython, run the following:
92
+ ```python
93
+ from huggingface_hub import snapshot_download
94
+
95
+ snapshot_download(repo_id="alanz-mit/FoundationTactile", repo_type="dataset", local_dir=".", local_dir_use_symlinks=False)
96
+ ```
97
+
98
+ To unpack the dataset which has been split into many `.zip` files:
99
+ ```sh
100
+ cd dataset
101
+ zip -s 0 FoTa_dataset.zip --out unsplit_FoTa_dataset.zip
102
+ unzip unsplit_FoTa_dataset.zip
103
+ ```
104
+
105
  ## Citation
106
 
107
  MIT License.