Tzktz commited on
Commit
3724d19
1 Parent(s): 3d1f2c1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-dev"
12
+ pipeline_tag: text-to-image
13
+ instance_prompt: TAMIZH
14
+ ---
15
+ # Tamizh Flux
16
+
17
+ Trained on Replicate using:
18
+
19
+ https://replicate.com/ostris/flux-dev-lora-trainer/train
20
+
21
+
22
+ ## Trigger words
23
+ You should use `TAMIZH` to trigger the image generation.
24
+
25
+
26
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
27
+
28
+ ```py
29
+ from diffusers import AutoPipelineForText2Image
30
+ import torch
31
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
32
+ pipeline.load_lora_weights('Tzktz/tamizh-fluxv2', weight_name='lora.safetensors')
33
+ image = pipeline('your prompt').images[0]
34
+ ```
35
+
36
+ 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)