meshgpt-pytorch
meshgpt-pytorch copied to clipboard
Implementation of MeshGPT, SOTA Mesh generation using Attention, in Pytorch
@lucidrains This is a issue I'm having a while, the cross-attention is very weak at the start of the sequence. When the transformer starts with no tokens it will relay...
Hi @lucidrains and @MarcusLoppe, I have succefully trained a meshAutoencoder, where validation loss is as low as training loss. I used around 28000 meshes from shapenet for training and validation....
Trainer - Added train function that will train with epochs instead of steps - Added option to display graph (maybe remove since it requires matlib?) - Added checkpoint_every_epoch to init...
I've created a dataset class which hopefully help beginners. Features: * Save & load compressed data in .npz format. * Generate text embeddings to reduce the VRAM bottleneck * Generate...
I was wondering if this was discussed before. The idea is to condition on existing meshes rather than text. This would be particularly useful in training it to retopologize existing...
In the original paper, meshGPT showed it's ability to generate novel meshes based on the trained encoder-transformer models. Is it possible that a training-guide that can fulfill this function be...
I used the codes in the jupyter notebook provided by @MarcusLoppe in the discussion section, and have successfully succeeded trained the autoencoder with a loss of 0.6. However, when I...
Are there any checkpoints of this model trained on an existing dataset? Would love to test it out!
Hello again, this issue is for next year 😃 When training the transformer, I used the follow config: ``` transformer = MeshTransformer( autoencoder, dim = 128, attn_depth = 4, attn_dim_head...
When training the MeshAutoencoder, I compared **ResidualLFQ** and **ResidualVQ**. ResidualLFQ is your default option, which can rebuild a reasonable structure. However, when I use ResidualVQ (without changing any of your...