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
hi, I dived into the project today, it seems a bug in the mtcnn/train/data.py#get_training_data(): positive_dest = os.path.join(output_folder, suffix, 'positive')
this line is nouse since the below line misued a prefix part_dest: pos = [os.path.join(part_dest, i) for i in positive_meta.iloc[:, 0]]
I think this should be positive_dest rather than part_dest. otherwise this will result same output as part faces.
The text was updated successfully, but these errors were encountered:
hi, I dived into the project today, it seems a bug in the mtcnn/train/data.py#get_training_data():
positive_dest = os.path.join(output_folder, suffix, 'positive')
this line is nouse since the below line misued a prefix part_dest:
pos = [os.path.join(part_dest, i) for i in positive_meta.iloc[:, 0]]
I think this should be positive_dest rather than part_dest. otherwise this will result same output as part faces.
The text was updated successfully, but these errors were encountered: