We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very nice code! I found a small bug that results in missing one cloth category (cape) and in confusing some cateegories a bit.
In data/aligned_dataset.py at line 82 you add 1 to each label:
labels.append(int(label) + 1)
However, in lines 121-123, you didn't do the same:
upperbody = [0, 1, 2, 3, 4, 5] lowerbody = [6, 7, 8] wholebody = [9, 10, 11, 12]
Hope it helps.
Best
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Very nice code!
I found a small bug that results in missing one cloth category (cape) and in confusing some cateegories a bit.
In data/aligned_dataset.py at line 82 you add 1 to each label:
However, in lines 121-123, you didn't do the same:
Hope it helps.
Best
The text was updated successfully, but these errors were encountered: