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
I am following the instruction for market1501 dataset, but I am getting this error.
all query identities do not appear in gallery
import torchreid datamanager = torchreid.data.ImageDataManager( root="/content/drive/MyDrive/AI_projects/AIC23_Track1_UWIPL_ETRI/deep-person-reid/reid-data", sources="market1501", targets="market1501", height=256, width=128, batch_size_train=32, batch_size_test=100, transforms=["random_flip", "random_crop"] ) model = torchreid.models.build_model( name="osnet_x1_0", num_classes=datamanager.num_train_pids, loss="softmax", pretrained=True ) model = model.cuda() optimizer = torchreid.optim.build_optimizer( model, optim="adam", lr=0.0003 ) scheduler = torchreid.optim.build_lr_scheduler( optimizer, lr_scheduler="single_step", stepsize=20 ) engine = torchreid.engine.ImageSoftmaxEngine( datamanager, model, optimizer=optimizer, scheduler=scheduler, label_smooth=True ) engine.run( save_dir="log/osnet_x1_0_market", max_epoch=200, eval_freq=60, print_freq=10, test_only=True )
What can I do to resolve this issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am following the instruction for market1501 dataset, but I am getting this error.
all query identities do not appear in gallery
What can I do to resolve this issue?
The text was updated successfully, but these errors were encountered: