lichorosario commited on
Commit
8783488
1 Parent(s): b9f75bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -20
README.md CHANGED
@@ -1,31 +1,61 @@
1
  ---
2
- tags:
3
- - text-to-image
4
- - fluxlora
5
- - diffusers
6
- - template:sd-lora
7
- widget:
8
- - output:
9
- url: samples/1726701472774__000003000_0.jpg
10
- text: wounded centaur, mythical creature [trigger]
11
- base_model:
12
- - black-forest-labs/FLUX.1-schnell
13
- trigger: in a dark fantasy style, grainy
14
  license: other
15
  license_name: flux-1-dev-non-commercial-license
16
  license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  ---
18
 
 
 
 
19
 
20
- # flux-lora-gliff-tosti-vector-1-1500s
21
- Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) under the [Glif Loradex program](https://huggingface.co/glif-loradex-trainer)
22
- <Gallery />
23
  ## Trigger words
24
  You should use `in a dark fantasy style, grainy` to trigger the image generation.
25
- ## Download model
26
- Weights for this model are available in Safetensors format.
27
- [Download](/glif-loradex-trainer/tostiok_flux_dev_tosti_vector_1/tree/main) them in the Files & versions tab.
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- ## License
30
- This model is licensed under the [flux-1-dev-non-commercial-license](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
31
 
 
 
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: other
3
  license_name: flux-1-dev-non-commercial-license
4
  license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
5
+ language:
6
+ - en
7
+ tags:
8
+ - flux
9
+ - diffusers
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 1 (1500 steps)
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)