File size: 1,960 Bytes
7be2ee9
 
 
 
 
 
 
 
 
 
 
 
 
98b57a0
 
 
 
 
 
 
 
 
 
 
 
6fc62ab
 
 
 
 
 
 
 
98b57a0
7be2ee9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
---
license: unlicense
language:
- en
base_model:
- black-forest-labs/FLUX.1-dev
tags:
- lora
- flux
- diffusers
- image-generation
pipeline_tag: text-to-image
library_name: diffusers
instance_prompt: >-
  photo of actsoonr poet person, textured skin with blemishes and pores, brown
  hair, tall and green-eyed
widget:
- text: >-
    actsoonr poet person, male, art nouveau style painted cartoon artwork poster
    of lifelike actsoonr acs person in flowery backdrop, stylized after Mucha,
    textured skin with blemishes and pores, brown hair, tall and green-eyed ,
    elaborate Symbolist painted details, mysterious magickal city backdrop,
    masterpiece illustration
  output:
    url: images/example_to36x3spf.png
- text: >-
    actsoonr poet person, male, art nouveau style painted cartoon artwork poster
    of lifelike actsoonr acs person in flowery backdrop, stylized after Mucha,
    textured skin with blemishes and pores, brown hair, tall and green-eyed ,
    elaborate Symbolist painted details, mysterious magickal city backdrop,
    masterpiece illustration
  output:
    url: images/example_pgoggihei.png

---
## Aleksay Calvin SOON® Face Model II
## |||| By SilverAgePoets.com ||||

A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
Intended to produce the likeness of us, the person writing these words. <br>
Made to create content for a conceptual animation project. <br>

<Gallery />

## Prompt using:
`photo of actsoonr poet person, textured skin with blemishes and pores, brown hair, tall and green-eyed,`, etc...  <br>

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('AlekseyCalvin/ACTsoonrFace_FluxLoRA_BySilverAgePoets')
image = pipeline('your prompt').images[0]
```