Instructions to use mengtingwei/rigface with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mengtingwei/rigface with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("mengtingwei/rigface", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
mengting commited on
Commit ·
47a7cdf
1
Parent(s): fb2c73b
update redame
Browse files- README.md +12 -11
- assets/demo.png +0 -0
README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
---
|
| 4 |
-
|
| 5 |
-
# RigFace Model Card
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# RigFace Model Card
|
| 6 |
+

|
| 7 |
+
|
| 8 |
+
<div align="center">
|
| 9 |
+
|
| 10 |
+
[**Paper**](https://arxiv.org/abs/2502.02465) **|** [**Code**](https://github.com/weimengting/RigFace)
|
| 11 |
+
|
| 12 |
+
</div>
|
assets/demo.png
ADDED
|