Closed fixer1107 closed 2 months ago
# Nearest neigbour classifier using the similarity
classifier = KnnClassifier(k=1, database_labels=dataset_database.labels_map)
Here it should be database_labels=dataset_database.labels_string
, as in other calls, not database_labels=dataset_database.labels_map
# Nearest neigbour classifier using the similarity classifier = KnnClassifier(k=1, database_labels=dataset_database.labels_map)
Here it should be
database_labels=dataset_database.labels_string
, as in other calls, notdatabase_labels=dataset_database.labels_map
Thanks so much for your help! I think it is working properly now.
Package Version
wildlife-datasets Version: 1.0.2 wildlife-tools Version: 0.0.2
Problem Description
Hello, I am a newcomer on Deep Learning and I am doing research on identification for animal individuals. I have gone through your paper, documentations and notebooks then I tried to follow the examples to create my own datasets.
My steps are:
The model is going on well with 3-5 images. The issue appears when the samples come to 6 or more, the predictions may fall beyond the identities set(database_labels), like belows:
So I guess the I might have done wrong in some initial steps like data preprocessing or the training parts? So would you please kindly have a check on my problems and provide some suggestions? Thank you!