Image-to-3D
English
File size: 2,238 Bytes
0a94001
 
 
 
 
 
 
 
 
f6aa1ba
 
 
bbdfdcb
 
f6aa1ba
 
0a94001
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dfb0935
 
 
 
5730e2d
dfb0935
5730e2d
dfb0935
5730e2d
dfb0935
 
0a94001
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
license: apache-2.0
language:
- en
pipeline_tag: image-to-3d
---
<div align="center">
<h1>LHM: Large Animatable Human Reconstruction Model for Single Image to 3D in Seconds</h1>

<div align="center" style="display: flex; justify-content: center; flex-wrap: wrap;">
  <!-- <a href='LICENSE'><img src='https://img.shields.io/badge/license-MIT-yellow'></a> -->
  <a href='https://arxiv.org/pdf/2503.10625'><img src='https://img.shields.io/badge/📜-arXiv:2503-10625'></a> 
  <a href='https://aigc3d.github.io/projects/LHM/'><img src='https://img.shields.io/badge/🌐-Project_Website-blueviolet'></a> 
  <a href='https://huggingface.co/spaces/3DAIGC/LHM'><img src='https://img.shields.io/badge/🤗-HuggingFace_Space-blue'></a> 
  <a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/📃-Apache--2.0-929292"></a>
</div>
</div>


## Overview

This repository contains the models of the paper [LHM: Large Animatable Human Reconstruction Model
for Single Image to 3D in Seconds](https://huggingface.co/papers/2503.10625). 

LHM is a feed-forward model for animatable 3D human reconstruction from a single image in seconds. Trained on a large-scale video
dataset with an image reconstruction loss, our model exhibits strong generalization ability to diverse real-world scenarios


## Quick Start

Please refer to our [Github Repo](https://github.com/aigc3d/LHM/tree/main)

### Download Model
```python
from huggingface_hub import snapshot_download 
# 500M-HF Model
model_dir = snapshot_download(repo_id='3DAIGC/LHM-500M-HF', cache_dir='./pretrained_models/huggingface')
# 500M Model
model_dir = snapshot_download(repo_id='3DAIGC/LHM-500M', cache_dir='./pretrained_models/huggingface')
# 1B Model
model_dir = snapshot_download(repo_id='3DAIGC/LHM-1B', cache_dir='./pretrained_models/huggingface')
```


## Citation 
```
@inproceedings{qiu2025LHM,
  title={LHM: Large Animatable Human Reconstruction Model from a Single Image in Seconds},
  author={Lingteng Qiu and Xiaodong Gu and Peihao Li  and Qi Zuo
     and Weichao Shen and Junfei Zhang and Kejie Qiu and Weihao Yuan
     and Guanying Chen and Zilong Dong and Liefeng Bo 
    },
  booktitle={arXiv preprint arXiv:2503.10625},
  year={2025}
}
```