Yuukki commited on
Commit
8ee9cb5
·
verified ·
1 Parent(s): 81ee33f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -1,3 +1,45 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ library_name: pytorch
4
+ tags:
5
+ - computer-vision
6
+ - 3d-reconstruction
7
+ - gaussian-splatting
8
+ - head-avatar
9
+ - animation
10
+ - cvpr-2026
11
  ---
12
+
13
+ # UIKA
14
+
15
+ This repository hosts the released model weights and auxiliary assets for **UIKA: Fast Universal Head Avatar from Pose-Free Images**.
16
+
17
+ UIKA is a feed-forward model for creating animatable 3D Gaussian head avatars from pose-free inputs. It supports a single reference image, multiple images of the same identity, or smartphone-style video captures. Use these files together with the official PyTorch code:
18
+
19
+ - Code: https://github.com/ant-research/UIKA
20
+ - Paper: https://arxiv.org/abs/2601.07603
21
+ - Project page: https://zijian-wu.github.io/uika-page/
22
+
23
+ ## Files
24
+
25
+ - `uika.safetensors` - main UIKA checkpoint. The official inference config expects it at `model_zoo/uika/uika.safetensors`.
26
+ - `fuvt_15k.safetensors` - FUVT UV-estimation module checkpoint used by UIKA.
27
+ - `human_parametric_models.tar` - human parametric model assets required by the pipeline. Third-party assets may have separate license terms.
28
+ - `ref_motion_example.tar` - example reference/motion assets for testing inference.
29
+
30
+ ## License
31
+
32
+ The UIKA-authored code and the released UIKA/FUVT checkpoints are released under the MIT License. Third-party model weights, datasets, and human parametric model assets remain subject to their own licenses and access terms. Review the official repository's third-party notices before redistribution or commercial use.
33
+
34
+ ## Citation
35
+
36
+ If you use UIKA in your work, please cite:
37
+
38
+ ```bibtex
39
+ @inproceedings{wu2026uika,
40
+ title = {UIKA: Fast Universal Head Avatar from Pose-Free Images},
41
+ author = {Wu, Zijian and Zhou, Boyao and Hu, Liangxiao and Liu, Hongyu and Sun, Yuan and Wang, Xuan and Cao, Xun and Shen, Yujun and Zhu, Hao},
42
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
43
+ year = {2026}
44
+ }
45
+ ```