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
I am trying to fine-tune one of your public models (e.g. metrabs_mob3l_y4t) on a new dataset.
Since these are the packaged multi-person models, I extracted the crop model itself.
However, using the checkpoint system implemented in main.py, it seems like the weights are not copied.
log_detailed.txt:
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).variables.0
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).variables.1
...
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).variables.265
Can you point me in the right direction?
The text was updated successfully, but these errors were encountered:
Hmm. Probably the variable names get messed up or lost after packaging into the multi-person SavedModel. For this use case it would be best to provide the original checkpoint files too. I'll look into this.
Young-Yoon
pushed a commit
to Young-Yoon/metrabs
that referenced
this issue
Mar 8, 2024
… for NCNN compatibility (isarandi#49)
* Removal of 3D soft argmax calculations from METRABS Head
Modification of METRABS Head to remove 3D soft argmax functionality. This is now computed in Loom SDK to support NCNN compatibility.
METRABS Trainer class had to be modified to do these calculations during training and testing time.
* Migrating duplicate functionality to separate function
Migrating shared functionality in MetrabsTrainer.forward_train and MetrabsTrainer.forward_test to _shared_process_inps
* fix error
---------
Co-authored-by: ylee <[email protected]>
Hi, very cool repo!
I am trying to fine-tune one of your public models (e.g. metrabs_mob3l_y4t) on a new dataset.
Since these are the packaged multi-person models, I extracted the crop model itself.
However, using the checkpoint system implemented in main.py, it seems like the weights are not copied.
log_detailed.txt:
Can you point me in the right direction?
The text was updated successfully, but these errors were encountered: