ASDA
ASDA copied to clipboard
FileNotFoundError: [Errno 2] No such file or directory: './lip/parts_bmp_filter_done/Hat'
Hi, there. I appreciate that your work is great. When I run your code, some bugs appears like: FileNotFoundError: [Errno 2] No such file or directory: './lip/parts_bmp_filter_done/Hat'
I guess that: 1、Some files are missing, such as "Hat" in the file "lip/parts_bmp_filter_done" 2、In the method "delete_invalid_part", something wrong happens.
Could you help to solve it?
I meet the same problem, too.
At line 105 in PartProvider.py,
you should change the code from
file_list = os.listdir(check_dir)
to
file_list = os.listdir(self.part_root_dir)
.