-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Error adding images to training #26
Comments
Do you mean you didn't change the '20_class_labels.npy' at all? If you include your own images, you should add your labels to '20_class_labels.npy'. If your images contain one class per image, then you can simply append your labels to the I think the |
Let's discuss here so others who have similar issues can refer to this.
Took a glance at the training code, it does not contain a validation set. You can repeat the process of what the authors do for training set: feature extraction and pseudo label generation, and apply them for your validation set. Then load it in the training code. If it's a validation set, you would probably not want to mix it with the training set. I am not the author(s), so my interpretation could be incorrect! |
ok, so i found the cause of my issue |
I want to modify the images used for training: i want to add my own images. how do i go around doing that?
here is what i did:
I added about 1500 images, extract features extracts all the 12000+ images, but when i run create pseudo label, in the line instead of printing (12000, 200) (12000, 20) it prints (18000, 200) (18000, 20)
What am i doing wrong, or am i missing any steps?
Heres the error:
The text was updated successfully, but these errors were encountered: