Add Hunyuan 3D 2.1 Support#8714
Conversation
fixed not returning y in the forward method of MoEBlock
and Image Processor
|
please do it |
|
@yousef-rafat can you share the hunyuan3d 2.1 workflow with me? I tried hunyuan3d 2.0 workflow ,but sometime the output doesen't seem to right.
|
|
hi @yousef-rafat , Not sure I'm doing the right thing here, it doesn't work for me. I get this error when executing the graph. I downloaded the model from here and renamed it hunyuan3d-dit-v2-1.ckpt : https://huggingface.co/tencent/Hunyuan3D-2.1/tree/main/hunyuan3d-dit-v2-1 Here is the error message : `got prompt Prompt executed in 2.58 seconds` Thanks for your help ! |
|
@guillaumeparra Use this workflow, I will add it to the template soon |




I have created the reimplementation of the VAE. The main contributions are in rewriting/avoiding the use of unnecessary libraries and modularizing the code by removing code redundancy and better structuring of the code.
The implemented VAE is faster by approximately 5 seconds in the encoding process and 2 seconds in the decoding process.
The fps.py file contains the implementation of Farthest Point Sampling, avoiding using torch_cluster. The preprocess.py contains the Volume Decoder, Surface Extractor, and Trimesh exporting. The point_attention.py contains the code for the encoder. The transformer.py contains the code for the Transformer model that is used in the geo decoder of the VAE and the Self-Attention in the encoder. The vae.py contains the VAE code along with a test example.