Upload folder using huggingface_hub
Browse files- LAM_assets.tar +3 -0
- LAM_human_model.tar +3 -0
- README.md +67 -0
- config.json +2 -0
LAM_assets.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b755a8d565420d11fe4f5c4f6b8e97c6b742593b82e41eeb18737e1b0953b1d1
|
3 |
+
size 292433920
|
LAM_human_model.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8a1e10301937ac9d6169bf46d1bb9a1e73725a31e380f67d5fca3f12f92ef24
|
3 |
+
size 122787840
|
README.md
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
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 |
+
- Library: [More Information Needed]
|
9 |
+
- Docs: [More Information Needed]
|
10 |
+
|
11 |
+
---
|
12 |
+
license: apache-2.0
|
13 |
+
- en
|
14 |
+
---
|
15 |
+
<div align="center">
|
16 |
+
<h1>LAM: Large Avatar Model for One-shot Animatable Gaussian Head</h1>
|
17 |
+
|
18 |
+
<div align="center" style="display: flex; justify-content: center; flex-wrap: wrap;">
|
19 |
+
<!-- <a href='LICENSE'><img src='https://img.shields.io/badge/license-MIT-yellow'></a> -->
|
20 |
+
<a href='https://arxiv.org/pdf/2502.17796'><img src='https://img.shields.io/badge/๐-arXiv:2503-10625'></a>
|
21 |
+
<a href='https://aigc3d.github.io/projects/LAM/'><img src='https://img.shields.io/badge/๐-Project_Website-blueviolet'></a>
|
22 |
+
<a href='https://huggingface.co/spaces/3DAIGC/LAM'><img src='https://img.shields.io/badge/๐ค-HuggingFace_Space-blue'></a>
|
23 |
+
<a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/๐-Apache--2.0-929292"></a>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
|
27 |
+
|
28 |
+
## Overview
|
29 |
+
|
30 |
+
This repository contains the example data and face blendshape model of the paper [LAM](https://arxiv.org/pdf/2502.17796).
|
31 |
+
|
32 |
+
LAM creates animatable Gaussian heads with one-shot images in a single forward pass in seconds. The reconstructed Gaussian avatar can
|
33 |
+
be reenacted and rendered on various platforms in real-time.
|
34 |
+
|
35 |
+
|
36 |
+
## Quick Start
|
37 |
+
|
38 |
+
Please refer to our [Github Repo](https://github.com/aigc3d/LAM)
|
39 |
+
|
40 |
+
### Download Model
|
41 |
+
```python
|
42 |
+
from huggingface_hub import hf_hub_download
|
43 |
+
|
44 |
+
hf_hub_download(repo_id="3DAIGC/LAM-assets',
|
45 |
+
repo_type='model',
|
46 |
+
filename='LAM_human_model.tar',
|
47 |
+
local_dir='./')
|
48 |
+
os.system('tar -xf LAM_human_model.tar && rm LAM_human_model.tar')
|
49 |
+
|
50 |
+
# launch example for LAM
|
51 |
+
hf_hub_download(repo_id='3DAIGC/LAM-assets',
|
52 |
+
repo_type='model',
|
53 |
+
filename='LAM_assets.tar',
|
54 |
+
local_dir='./')
|
55 |
+
os.system('tar -xf LAM_assets.tar && rm LAM_assets.tar')
|
56 |
+
```
|
57 |
+
|
58 |
+
|
59 |
+
## Citation
|
60 |
+
```
|
61 |
+
@article{he2025lam,
|
62 |
+
title={LAM: Large Avatar Model for One-shot Animatable Gaussian Head},
|
63 |
+
author={He, Yisheng and Gu, Xiaodong and Ye, Xiaodan and Xu, Chao and Zhao, Zhengyi and Dong, Yuan and Yuan, Weihao and Dong, Zilong and Bo, Liefeng},
|
64 |
+
journal={arXiv preprint arXiv:2502.17796},
|
65 |
+
year={2025}
|
66 |
+
}
|
67 |
+
```
|
config.json
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
}
|