You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the default path for PEM checkpoint in SAM-6D/Pose_Estimation_Model/test_bop.py is checkpoint = os.path.join(cfg.log_dir, 'checkpoint_iter' + str(cfg.test_iter).zfill(6) + '.pth'). But after setting up the repo weight are downloaded under the checkpoints not logs.
Modify by the following: default_checkpoint_path = os.path.join(BASE_DIR, 'checkpoints', 'sam-6d-pem-base.pth')
The text was updated successfully, but these errors were encountered:
the default path for PEM checkpoint in
SAM-6D/Pose_Estimation_Model/test_bop.py
ischeckpoint = os.path.join(cfg.log_dir, 'checkpoint_iter' + str(cfg.test_iter).zfill(6) + '.pth')
. But after setting up the repo weight are downloaded under thecheckpoints
notlogs
.Modify by the following:
default_checkpoint_path = os.path.join(BASE_DIR, 'checkpoints', 'sam-6d-pem-base.pth')
The text was updated successfully, but these errors were encountered: