You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/dataset_prepare.md
+109-7Lines changed: 109 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -392,11 +392,58 @@ The extracted and upsampled COCO objects images and masks can be found in this [
392
392
393
393
Please extract CelebAMask-HQ and 11k Hands images based on the splits found in [drive](https://drive.google.com/drive/folders/15nZETWlGMdcKY6aHbchRsWkUI42KTNs5?usp=sharing).
394
394
395
+
download file to ./data_materials
396
+
```none
397
+
CelebAMask-HQ.zip
398
+
CelebAMask-HQ-masks_corrected.7z
399
+
RealOcc.7z
400
+
RealOcc-Wild.7z
401
+
11k-hands_mask.7z
402
+
11k-hands_image.7z
403
+
coco_object.7z
404
+
dtd-r1.0.1.tar.gz
405
+
```
406
+
---
407
+
408
+
```bash
409
+
apt-get install p7zip-full
410
+
411
+
cd data_materials
412
+
413
+
#extract celebAMask-HQ and split by train-set
414
+
unzip CelebAMask-HQ.zip
415
+
7za x CelebAMask-HQ-masks_corrected.7z -o./CelebAMask-HQ
416
+
#suggest better code if you have
417
+
rsync -a ./CelebAMask-HQ/CelebA-HQ-img/ --files-from=./CelebAMask-HQ-WO-train.txt ./CelebAMask-HQ-WO-Train_img
0 commit comments