zazee commited on
Commit
18ec195
·
verified ·
1 Parent(s): 7f02a7d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -1,11 +1,11 @@
1
  ---
2
  tags:
3
- - text-to-video
4
  - lora
5
  - diffusers
6
  - template:sd-lora
7
  - ai-toolkit
8
- base_model: ai-toolkit/Wan2.2-T2V-A14B-Diffusers-bf16
9
  license: creativeml-openrail-m
10
  inference:
11
  parameters:
@@ -36,8 +36,8 @@ Weights for this model are available in Safetensors format.
36
  from diffusers import AutoPipelineForText2Image
37
  import torch
38
 
39
- pipeline = AutoPipelineForText2Image.from_pretrained('ai-toolkit/Wan2.2-T2V-A14B-Diffusers-bf16', torch_dtype=torch.bfloat16).to('cuda')
40
- pipeline.load_lora_weights('zazee/my_first_lora_v1-lora', weight_name='my_first_lora_v1_low_noise.safetensors')
41
  image = pipeline('syahirahmz').images[0]
42
  image.save("my_image.png")
43
  ```
 
1
  ---
2
  tags:
3
+ - text-to-image
4
  - lora
5
  - diffusers
6
  - template:sd-lora
7
  - ai-toolkit
8
+ base_model: Qwen/Qwen-Image
9
  license: creativeml-openrail-m
10
  inference:
11
  parameters:
 
36
  from diffusers import AutoPipelineForText2Image
37
  import torch
38
 
39
+ pipeline = AutoPipelineForText2Image.from_pretrained('Qwen/Qwen-Image', torch_dtype=torch.bfloat16).to('cuda')
40
+ pipeline.load_lora_weights('zazee/my_first_lora_v1-lora', weight_name='my_first_lora_v1_000001000.safetensors')
41
  image = pipeline('syahirahmz').images[0]
42
  image.save("my_image.png")
43
  ```