Prgckwb commited on
Commit
c4847f5
1 Parent(s): 1cc3091

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -67,8 +67,15 @@ You should use `an icon of trpfrog` to trigger the image generation.
67
  ```py
68
  from diffusers import AutoPipelineForText2Image
69
  import torch
70
- pipeline = AutoPipelineForText2Image.from_pretrained(stabilityai/stable-diffusion-3.5-medium, torch_dtype=torch.float16).to('cuda')
71
- pipeline.load_lora_weights('Prgckwb/trpfrog-sd3.5m-lora', weight_name='pytorch_lora_weights.safetensors')
 
 
 
 
 
 
 
72
  image = pipeline('an icon of trpfrog eating ramen').images[0]
73
  ```
74
 
 
67
  ```py
68
  from diffusers import AutoPipelineForText2Image
69
  import torch
70
+
71
+ pipeline = AutoPipelineForText2Image.from_pretrained(
72
+ stabilityai/stable-diffusion-3.5-medium,
73
+ torch_dtype=torch.float16
74
+ ).to('cuda')
75
+ pipeline.load_lora_weights(
76
+ 'Prgckwb/trpfrog-sd3.5m-lora',
77
+ weight_name='pytorch_lora_weights.safetensors'
78
+ )
79
  image = pipeline('an icon of trpfrog eating ramen').images[0]
80
  ```
81