Biao Jiang (江彪)

Results 10 comments of Biao Jiang (江彪)

Hello, The `SafetensorError: Error while deserializing header: HeaderTooLarge` you've encountered is similar to issue #68, often due to issues with downloading checkpoints. To address this, please use Git LFS to...

Hello, The issue you've encountered with the Huggingface demo timing out is due to Huggingface Spaces' mechanism, where inactivity over an extended period can lead to such errors. We've now...

The issue you're encountering is most likely related to missing data. By default, we save all data into a single temporary data file for faster I/O operations. You can try...

Hello, Thank you for your kind words about the project, and I'm sorry to hear you're encountering issues with evaluating the motionGPT for the motion translation (m2t) task. The problem...

Hello, This error appears to be stemming from an attempt to fit SMPL on the `263`-dimensional features of HumanML3D, while fitting requires `22x3` joint positions. You can resolve this by...

> Did you only do fine-tuning, or did you also perform pre-training? Hello @ChangeNext We employ both pre-training and fine-tuning processes for the T5 and GPT-2 models to ensure they...

Hello, For training Kit-ML with MotionGPT and addressing the dimension mismatch issue, you simply need to update the configuration. https://github.com/OpenMotionLab/MotionGPT/blob/a56b09ff7d20b4ddde9c0080aeb4a6b237f031c3/configs/config_h3d_stage1.yaml#L33-L34 Change `mGPT.data.HumanML3D.HumanML3DDataModule` to `mGPT.data.Kit.KitDataModule` in the config file. This should...

Hi, @hdjsjyl This error is caused by the discrepancy between running [gradio](https://www.gradio.app/) on Huggingface spaces and running it locally. To address this, we have made updates to ensure it is...

The updates were previously stalled due to a network connection issue. Please try pulling from GitHub again.

Hi @yhyu13 From the error log, it seems that the `input size` of evaluators is not correct which indicates the feature size of the dataset is not correct. https://github.com/ChenFengYe/motion-latent-diffusion/blob/c28a06435077800fde4d76ef93eb2a4016a5120c/mld/models/modeltype/mld.py#L157-L161 Maybe...