-
Notifications
You must be signed in to change notification settings - Fork 117
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
Question about dataset #24
Comments
训练的时候只用了:train_loader tst_binary, tst_label = compute_result(test_loader, net, device=device)
# print("calculating dataset binary code.......")\
trn_binary, trn_label = compute_result(dataset_loader, net, device=device)
# print("calculating map.......")
mAP = CalcTopMap(trn_binary.numpy(), tst_binary.numpy(), trn_label.numpy(), tst_label.numpy(),
config["topK"]) |
hi, thank you very much for your work, the database.txt test.txt and train.txt of cifar10 in data is not given |
You can get the cifar10 dataset by |
If I have an image classification dataset, how could I get the onehot label of each image for retrieval?
The text was updated successfully, but these errors were encountered: