naoto0804 / pytorch-inpainting-with-partial-conv

Unofficial pytorch implementation of 'Image Inpainting for Irregular Holes Using Partial Convolutions' [Liu+, ECCV2018]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to load Places2 dataset?

wangcx2018 opened this issue · comments

How to access the Places2 datasets in this code? Should I download or not? If download in advance, where does it need to place? thanks!

@wangcx2018 It's pretty sophisticated and huge dataset developed by the following paper. On downloading, please follow the instructions on their website.
I expect to have data_large, val_large, and test_large under the root directory of Places2.
Specify the path of the Places2 dataset using an argument --root /path/to/Places2 in train.py

Thank you!