File size: 513 Bytes
7b9ae48
 
 
 
 
 
 
 
 
 
 
 
 
 
6dfb19c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
license: apache-2.0
---
# FineFace: Towards Localized Fine-Grained Control for Facial Expression Generation


<div align="center">
  
[**Paper (ArXiv)**](https://arxiv.org/abs/2407.20175) **|** [**Github**](https://github.com/tvaranka/fineface)
</div>

<div  align="center">  
  
![results](./teaser.png)
</div>

```python
from fineface import FineFacePipeline

pipe = FineFacePipeline()
prompt = "a closeup of a boy in a park"
aus = {"AU1": 2.5, "AU6": 2.5, "AU12": 5}
image = pipe(prompt, aus).images[0]
```