nielsr HF Staff commited on
Commit
eff2646
·
verified ·
1 Parent(s): 8bf839e

Improve model card for FastMesh

Browse files

This PR significantly enhances the model card by:
- Adding the `license` and `pipeline_tag: text-to-3d` to the metadata, improving discoverability.
- Including a comprehensive description based on the paper abstract.
- Providing direct links to the paper, project page, and the GitHub repository.
- Incorporating a clear "Quick Start" section with official code examples for generating meshes.
- Adding the academic citation for the paper.

These updates will make the model more discoverable and easier to use for the community.

Files changed (1) hide show
  1. README.md +34 -4
README.md CHANGED
@@ -2,9 +2,39 @@
2
  tags:
3
  - model_hub_mixin
4
  - pytorch_model_hub_mixin
 
 
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  tags:
3
  - model_hub_mixin
4
  - pytorch_model_hub_mixin
5
+ license: apache-2.0
6
+ pipeline_tag: text-to-3d
7
  ---
8
 
9
+ # FastMesh: Efficient Artistic Mesh Generation via Component Decoupling
10
+
11
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration.
12
+
13
+ **FastMesh** is an efficient framework that generates artistic meshes by treating vertices and faces separately, significantly reducing redundancy and achieving more than 8x faster speed on mesh generation compared to state-of-the-art approaches, while producing higher mesh quality.
14
+
15
+ - 📚 Paper: [FastMesh: Efficient Artistic Mesh Generation via Component Decoupling](https://huggingface.co/papers/2508.19188)
16
+ - 🏠 Project Page: [https://jhkim0759.github.io/projects/FastMesh/](https://jhkim0759.github.io/projects/FastMesh/)
17
+ - 💻 Code: [https://github.com/jhkim0759/FastMesh](https://github.com/jhkim0759/FastMesh)
18
+
19
+ ## 💡 Quick Start
20
+ Generate meshes from sampled point cloud with V1K variant:
21
+ ```bash
22
+ python inference.py --mesh_path assets --variant V1K --batch_size 3
23
+ ```
24
+ Generate meshes from sampled point cloud with V4K variant:
25
+ ```bash
26
+ python inference.py --mesh_path assets --variant V4K --batch_size 1
27
+ ```
28
+
29
+ ## 📚 Citation
30
+ If you find our work helpful, please consider citing:
31
+ ```bibtex
32
+ @misc{kim2025fastmesh,
33
+ title={FastMesh: Efficient Artistic Mesh Generation via Component Decoupling},
34
+ author={Jeonghwan Kim and Yushi Lan and Armando Fortes and Yongwei Chen and Xingang Pan},
35
+ year={2025},
36
+ eprint={2508.19188},
37
+ archivePrefix={arXiv},
38
+ url={https://arxiv.org/abs/2508.19188},
39
+ }
40
+ ```