l3xx commited on
Commit
46db9b9
·
verified ·
1 Parent(s): a0481e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -10
README.md CHANGED
@@ -1,23 +1,46 @@
1
  ---
 
 
 
 
 
2
  tags:
3
- - text-to-image
4
  - flux
5
- - lora
6
  - diffusers
7
- - template:sd-lora
8
- - fluxgym
9
-
 
 
 
 
 
 
 
10
  ---
11
 
12
  # ronaldo
13
- A Flux LoRA trained on a local computer with [Fluxgym](https://github.com/cocktailpeanut/fluxgym)
14
 
15
- <Gallery />
16
 
17
- ## Trigger words
 
 
18
 
 
 
19
  You should use `ronaldo` to trigger the image generation.
20
 
21
- ## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, Forge, etc.
22
 
23
- Weights for this model are available in Safetensors format.
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - replicate
12
+ base_model: "black-forest-labs/FLUX.1-dev"
13
+ pipeline_tag: text-to-image
14
+ # widget:
15
+ # - text: >-
16
+ # prompt
17
+ # output:
18
+ # url: https://...
19
+ instance_prompt: ronaldo
20
  ---
21
 
22
  # ronaldo
 
23
 
24
+ <!-- <Gallery /> -->
25
 
26
+ Trained on Replicate using:
27
+
28
+ https://replicate.com/ostris/flux-dev-lora-trainer/train
29
 
30
+
31
+ ## Trigger words
32
  You should use `ronaldo` to trigger the image generation.
33
 
 
34
 
35
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
36
+
37
+ ```py
38
+ from diffusers import AutoPipelineForText2Image
39
+ import torch
40
+
41
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
42
+ pipeline.load_lora_weights('namita2991/messi', weight_name='lora.safetensors')
43
+ image = pipeline('your prompt').images[0]
44
+ ```
45
+
46
+ 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)