ksmehrab commited on
Commit
003aecc
1 Parent(s): f1f6a82

Added initial download instructions

Browse files
Files changed (1) hide show
  1. README.md +22 -6
README.md CHANGED
@@ -142,14 +142,30 @@ English
142
  data-bib.bib
143
  ```
144
 
145
- **Instructions for downloading dataset**
146
  <!-- [Add instructions for downloading images here]
147
  -->
148
- * Move to the `files and versions` tab
149
- * Git clone the repository to obtain all images, CSVs and necessary files
150
- * Move all the images from each chunk in `Images` to your target directory. Use the target directory as the flat image directory for the dataset.
151
- * Run `download_and_process_nd_images.py` with --save_dir set to your target directory from the previous step.
152
- * This will download and process the CC-BY-ND images that we do not provide in the `Images` folder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
 
154
  ### Data Instances
155
 
 
142
  data-bib.bib
143
  ```
144
 
145
+ ### Instructions for downloading dataset
146
  <!-- [Add instructions for downloading images here]
147
  -->
148
+ * Git clone the repository
149
+ * Run the following commands in a **terminal**:
150
+ ```bash
151
+ git clone https://huggingface.co/datasets/imageomics/fish-vista
152
+ cd fish-vista
153
+ ```
154
+ * Run the following commands to move all chunked images to a single directory:
155
+ ```bash
156
+ mkdir AllImages
157
+ find Images -type f -exec mv -v {} AllImages \;
158
+ rm -rf Images
159
+ mv AllImages Images
160
+ ```
161
+
162
+ * You should now have all the images in the *Images* directory
163
+
164
+ * Run the following commands to download and process copyrighted images
165
+ ```bash
166
+ python download_and_process_nd_images.py --save_dir Images
167
+ ```
168
+ * This will download and process the CC-BY-ND images that we do not provide in the *Images* folder
169
 
170
  ### Data Instances
171