Chriss88 commited on
Commit
e6bb87e
·
verified ·
1 Parent(s): d265c81

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - text-to-image
4
+ - stable-diffusion-xl
5
+ - lora
6
+ - diffusers
7
+ - template:sd-lora
8
+ - ai-toolkit
9
+ base_model: John6666/big-lust-v16-sdxl
10
+ license: creativeml-openrail-m
11
+ inference:
12
+ parameters:
13
+ width: 1024
14
+ height: 1024
15
+ instance_prompt: Lly
16
+ ---
17
+
18
+ # my_first_lora_Lly_SDXL_3-lora
19
+
20
+ Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
21
+
22
+
23
+
24
+ ## Trigger words
25
+
26
+ You should use `Lly` to trigger the image generation.
27
+
28
+ ## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
29
+
30
+ Weights for this model are available in Safetensors format.
31
+
32
+ [Download](Chriss88/my_first_lora_Lly_SDXL_3-lora/tree/main) them in the Files & versions tab.
33
+
34
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
35
+
36
+ ```py
37
+ from diffusers import AutoPipelineForText2Image
38
+ import torch
39
+
40
+ pipeline = AutoPipelineForText2Image.from_pretrained('John6666/big-lust-v16-sdxl', torch_dtype=torch.float16).to('cuda')
41
+ pipeline.load_lora_weights('Chriss88/my_first_lora_Lly_SDXL_3-lora', weight_name='my_first_lora_Lly_SDXL_3_000002750.safetensors')
42
+ image = pipeline('Lly').images[0]
43
+ image.save("my_image.png")
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)
47
+