AlekseyCalvin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1 |
-
---
|
2 |
-
license: unlicense
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: unlicense
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- black-forest-labs/FLUX.1-dev
|
7 |
+
tags:
|
8 |
+
- lora
|
9 |
+
- flux
|
10 |
+
- diffusers
|
11 |
+
- image-generation
|
12 |
+
pipeline_tag: text-to-image
|
13 |
+
library_name: diffusers
|
14 |
+
instance_prompt: photo of ACS person, tall and green-eyed, textured skin with blemishes and pores
|
15 |
+
---
|
16 |
+
## Aleksay Calvin SOON® Face Model I
|
17 |
+
## |||| By SilverAgePoets.com ||||
|
18 |
+
|
19 |
+
A Low-Rank Adapter (LoRA) for FLUX-family models... <br>
|
20 |
+
Intended to produce the likeness of us, the person writing these words. <br>
|
21 |
+
Made to create content for a conceptual animation project. <br>
|
22 |
+
|
23 |
+
<Gallery />
|
24 |
+
|
25 |
+
## Prompt using:
|
26 |
+
`photo of ACS person, tall and green-eyed, textured skin with blemishes and pores, brown hair`, etc... <br>
|
27 |
+
|
28 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
29 |
+
|
30 |
+
```py
|
31 |
+
from diffusers import AutoPipelineForText2Image
|
32 |
+
import torch
|
33 |
+
|
34 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
35 |
+
pipeline.load_lora_weights('AlekseyCalvin/ACSoonr_ACS_Flux')
|
36 |
+
image = pipeline('your prompt').images[0]
|
37 |
+
```
|