dtthanh commited on
Commit
0b4d751
·
verified ·
1 Parent(s): 7e58537

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -1
README.md CHANGED
@@ -2,4 +2,41 @@
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
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ instance_prompt: uncda0
15
+
16
+ ---
17
+
18
+ # Flux Hyundai N Vision 74
19
+
20
+ <Gallery />
21
+
22
+ Trained on Replicate using:
23
+
24
+ https://replicate.com/ostris/flux-dev-lora-trainer/train
25
+
26
+
27
+ ## Trigger words
28
+ You should use `uncda0` to trigger the image generation.
29
+
30
+
31
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
32
+
33
+ ```py
34
+ from diffusers import AutoPipelineForText2Image
35
+ import torch
36
+
37
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
38
+ pipeline.load_lora_weights('dtthanh/uncle_dao_lora', weight_name='lora.safetensors')
39
+ image = pipeline('your prompt').images[0]
40
+ ```
41
+
42
+ 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)