bigdoinks420518 commited on
Commit
8ab1ca4
·
verified ·
1 Parent(s): 0165105

Upload README.md with huggingface_hub

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