ASDA icon indicating copy to clipboard operation
ASDA copied to clipboard

FileNotFoundError: [Errno 2] No such file or directory: './lip/parts_bmp_filter_done/Hat'

Open qingtianwu opened this issue 3 years ago • 2 comments

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?

qingtianwu avatar Feb 19 '22 12:02 qingtianwu

I meet the same problem, too.

FRANKJIANG20 avatar Mar 07 '22 14:03 FRANKJIANG20

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).

redorangeyellowy avatar May 26 '22 07:05 redorangeyellowy