rahulreshma commited on
Commit
7cda5cf
·
verified ·
1 Parent(s): 27e7e2c

Upload cmds.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. cmds.txt +14 -0
cmds.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from diffusers import DiffusionPipeline
2
+
3
+ pipeline = DiffusionPipeline.from_pretrained("stable-diffusion-v1-5/stable-diffusion-v1-5", use_safetensors=True)
4
+
5
+
6
+ from diffusers import StableDiffusionPipeline
7
+
8
+ pipeline = StableDiffusionPipeline.from_single_file(
9
+ "https://huggingface.co/WarriorMama777/OrangeMixs/blob/main/Models/AbyssOrangeMix/AbyssOrangeMix.safetensors"
10
+ )
11
+
12
+ from diffusers import StableDiffusionPipeline
13
+
14
+ pipeline = StableDiffusionPipeline.from_single_file("https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5/blob/main/v1-5-pruned.ckpt", use_safetensors=False)