lichorosario
commited on
Commit
•
9119974
1
Parent(s):
48cd3f6
Update README.md
Browse files
README.md
CHANGED
@@ -10,15 +10,52 @@ tags:
|
|
10 |
- lora
|
11 |
base_model: black-forest-labs/FLUX.1-schnell
|
12 |
pipeline_tag: text-to-image
|
|
|
13 |
library_name: diffusers
|
14 |
inference:
|
15 |
parameters:
|
16 |
width: 1024
|
17 |
height: 1024
|
18 |
-
|
19 |
widget:
|
20 |
-
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
- lora
|
11 |
base_model: black-forest-labs/FLUX.1-schnell
|
12 |
pipeline_tag: text-to-image
|
13 |
+
instance_prompt: in a dark fantasy style, grainy
|
14 |
library_name: diffusers
|
15 |
inference:
|
16 |
parameters:
|
17 |
width: 1024
|
18 |
height: 1024
|
|
|
19 |
widget:
|
20 |
+
- text: >-
|
21 |
+
This image is a simplified, TSTVCTR vector-style portrait of a person with
|
22 |
+
distinct cartoonish features. The man is wearing a gray hat and black-framed
|
23 |
+
glasses. He has a thick, neatly trimmed beard and mustache. A playful touch
|
24 |
+
is added by a small blue flower with a pink center placed behind his right
|
25 |
+
ear. His expression is neutral, with a hint of warmth in his eyes and a
|
26 |
+
faint smile. The background is a solid pale yellow, providing a calm,
|
27 |
+
minimalistic backdrop that contrasts with the bold, dark colors of his beard
|
28 |
+
and glasses. He is dressed in a simple green shirt, which matches the clean,
|
29 |
+
modern, and flat art style of the image. The overall feel of the
|
30 |
+
illustration is lighthearted and modern, with geometric lines and a focus on
|
31 |
+
smooth, flat shapes. The flower adds a fun and quirky element to the
|
32 |
+
otherwise calm and straightforward portrayal.
|
33 |
+
output:
|
34 |
+
url: images/example_wyd3vx781.png
|
35 |
|
36 |
+
|
37 |
+
---
|
38 |
+
|
39 |
+
# Tosti vector
|
40 |
+
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) under the [Glif Loradex program](https://huggingface.co/glif-loradex-trainer) by [Glif](https://glif.app) user `tostiok`.
|
41 |
+
|
42 |
+
|
43 |
+
## Trigger words
|
44 |
+
You should use `in a dark fantasy style, grainy` to trigger the image generation.
|
45 |
+
<Gallery />
|
46 |
+
|
47 |
+
|
48 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
49 |
+
|
50 |
+
```py
|
51 |
+
from diffusers import AutoPipelineForText2Image
|
52 |
+
import torch
|
53 |
+
|
54 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
|
55 |
+
pipeline.load_lora_weights('lichorosario/flux-samhtr-remastered', weight_name='lora.safetensors')
|
56 |
+
image = pipeline('your prompt').images[0]
|
57 |
+
```
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
|