MotionGPT
MotionGPT copied to clipboard
How to save the VQVAE's weight separately from the whole model?
Hi, thanks for sharing the great work.👍 I am trying to reuse the motion tokenizer (VQVAE) in MotionGPT so I wonder.
-
Is there a way to save the VQVAE's weight as a checkpoint file separately from saving the whole MotionGPT model? Cuz I saw there is
load_pretrained_vae()
function here: https://github.com/OpenMotionLab/MotionGPT/blob/fac297260a0e7138ce04f8b41c2e7b24e1f09a9a/mGPT/utils/load_checkpoint.py#L17 -
I checked the pre-trained model
motiongpt_s3_h3d.tar
, and I found the checkpoint includes many parts (metrics, vae, lm, loss). Why does it contain so many parameters only for metrics?
It would be a big help if someone could reply, thanks🤗