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'm attempting to train the model on a custom .bvh animation. However, I receive the error:
File "ganimator/bvh/bvh_io.py", line 178, in load
data_block = data_block.reshape(N, 6)
ValueError: cannot reshape array of size 528 into shape (89,6)
It seems that my data of size 528 cannot fit into the data_block of size 534. It's off by a single parent. I provide the sample.bvh file here for inspection. It has been exported from a .fbx file in blender.
Hi, the bvh parser integrated in the program is not as robust as the one in Blender. Our parser only support bvh files with fixed number of channels for all joint. The issue in this file is the root joint has 0 channel. The easiest solutoin will be simply remove that joint.
Hi, thanks for the great paper and library!
I'm attempting to train the model on a custom .bvh animation. However, I receive the error:
It seems that my data of size 528 cannot fit into the data_block of size 534. It's off by a single parent. I provide the sample.bvh file here for inspection. It has been exported from a .fbx file in blender.
sample.bvh
The text was updated successfully, but these errors were encountered: