Lingteng commited on
Commit
0512f1d
ยท
verified ยท
1 Parent(s): 147d013

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -6
README.md CHANGED
@@ -1,9 +1,52 @@
1
  ---
2
- tags:
3
- - pytorch_model_hub_mixin
4
- - 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
- - Library: [More Information Needed]
9
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pipeline_tag: image-to-3d
6
  ---
7
+ <div align="center">
8
+ <h1>LHM: Large Animatable Human Reconstruction Model for Single Image to 3D in Seconds</h1>
9
 
10
+ <div align="center" style="display: flex; justify-content: center; flex-wrap: wrap;">
11
+ <!-- <a href='LICENSE'><img src='https://img.shields.io/badge/license-MIT-yellow'></a> -->
12
+ <a href='https://arxiv.org/pdf/2503.10625'><img src='https://img.shields.io/badge/๐Ÿ“œ-arXiv:2503-10625'></a>
13
+ <a href='https://aigc3d.github.io/projects/LHM/'><img src='https://img.shields.io/badge/๐ŸŒ-Project_Website-blueviolet'></a>
14
+ <a href='https://huggingface.co/spaces/3DAIGC/LHM'><img src='https://img.shields.io/badge/๐Ÿค—-HuggingFace_Space-blue'></a>
15
+ <a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/๐Ÿ“ƒ-Apache--2.0-929292"></a>
16
+ </div>
17
+ </div>
18
+
19
+
20
+ ## Overview
21
+
22
+ This repository contains the models of the paper [LHM: Large Animatable Human Reconstruction Model
23
+ for Single Image to 3D in Seconds](https://huggingface.co/papers/2503.10625).
24
+
25
+ LHM is a feed-forward model for animatable 3D human reconstruction from a single image in seconds. Trained on a large-scale video
26
+ dataset with an image reconstruction loss, our model exhibits strong generalization ability to diverse real-world scenarios
27
+
28
+
29
+ ## Quick Start
30
+
31
+ Please refer to our [Github Repo](https://github.com/aigc3d/LHM/tree/main)
32
+
33
+ ### Download Model
34
+ ```python
35
+ from huggingface_hub import snapshot_download
36
+ # 1B Model
37
+ model_dir = snapshot_download(model_id='3DAIGC/LHM-1B', cache_dir='./pretrained_models/huggingface')
38
+ ```
39
+
40
+
41
+ ## Citation
42
+ ```
43
+ @inproceedings{qiu2025LHM,
44
+ title={LHM: Large Animatable Human Reconstruction Model from a Single Image in Seconds},
45
+ author={Lingteng Qiu and Xiaodong Gu and Peihao Li and Qi Zuo
46
+ and Weichao Shen and Junfei Zhang and Kejie Qiu and Weihao Yuan
47
+ and Guanying Chen and Zilong Dong and Liefeng Bo
48
+ },
49
+ booktitle={arXiv preprint arXiv:2503.10625},
50
+ year={2025}
51
+ }
52
+ ```