Hello, thank you for sharing your work. We want to adapt this to our own data and we are having issues even getting started.
I have a few questions on how to move forward.
On step 4 "prepare wireframes". What should be the input images? We want to use this on elevation map data. But we are also hoping to make sure everything working as expected before trying to train it further on our data.
For Eval. I downloaded everything listed in your google drive and put them in folder named ckpt at the root of the project. I tried to Test on 256 images by running the command: python FTR_inference.py --path ./ckpt/zits_places2 --config_file ./config_list/config_ZITS_places2.yml --GPU_ids '0' Which gave me the error:
FileNotFoundError: [Errno 2] No such file or directory: '/home/wmlce/places365_standard/places2_all/test_sub_list.txt' so I realize I need to update the config paths. But I am not sure what test_sub_list.txt should contain? Should VAL_FLIST and TEST_FLIST really be the same lists? Do I also need to provide the TRAIN_FLIST to test the inference? Do I need the whole places dataset?
3.For the irregular_mask_list and coco_mask_list do I need both? If so, do they just need to include the paths to the files? Or do the lists have to match the size of the TRAIN sets and TEST sets respectively?
Where do I find the lama_places2/InpaintingModel_gen and dis.pth? Do I need to have these? Will I need it for training?
I also tried running a single inference by using the command: python single_image_test.py --path=./best_transformer_places2.pth --config_file=config_list/config_ZITS_places2.yml --GPU_ids='0' --img_path=elevation.png --mask_path=mask.png --save_path=./
FileExistsError: [Errno 17] File exists: './best_transformer_places2.pth' but I see that the exists_ok flag is set to True. Any idea why it would be failing here?
Sorry for so many questions. It seems that everything I have tried results in an error and I am not sure what I am doing wrong. Thanks for any input you can offer.
Hello, thank you for sharing your work. We want to adapt this to our own data and we are having issues even getting started.
I have a few questions on how to move forward.
FileNotFoundError: [Errno 2] No such file or directory: '/home/wmlce/places365_standard/places2_all/test_sub_list.txt'
so I realize I need to update the config paths. But I am not sure what test_sub_list.txt should contain? Should VAL_FLIST and TEST_FLIST really be the same lists? Do I also need to provide the TRAIN_FLIST to test the inference? Do I need the whole places dataset?3.For the irregular_mask_list and coco_mask_list do I need both? If so, do they just need to include the paths to the files? Or do the lists have to match the size of the TRAIN sets and TEST sets respectively?
FileExistsError: [Errno 17] File exists: './best_transformer_places2.pth'
but I see that the exists_ok flag is set to True. Any idea why it would be failing here?Sorry for so many questions. It seems that everything I have tried results in an error and I am not sure what I am doing wrong. Thanks for any input you can offer.
Cheers, Benjamin