Yntec commited on
Commit
62bb26e
·
verified ·
1 Parent(s): 43f453b

Upload Fictiverse/Stable_Diffusion_PaperCut_Model/README.md with huggingface_hub

Browse files
Fictiverse/Stable_Diffusion_PaperCut_Model/README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - text-to-image
5
+ ---
6
+ # 🧩 Paper Cut model V1
7
+ This is the fine-tuned Stable Diffusion model trained on Paper Cut images.
8
+
9
+ Use **PaperCut** in your prompts.
10
+
11
+ ### Sample images:
12
+ ![PaperCut.jpg](https://s3.amazonaws.com/moonup/production/uploads/1667910351389-635749860725c2f190a76e88.jpeg)
13
+ ![PaperCut.jpg](https://s3.amazonaws.com/moonup/production/uploads/1667912285222-635749860725c2f190a76e88.jpeg)
14
+ Based on StableDiffusion 1.5 model
15
+
16
+ ### 🧨 Diffusers
17
+
18
+ This model can be used just like any other Stable Diffusion model. For more information,
19
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
20
+
21
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
22
+
23
+ ```python
24
+ from diffusers import StableDiffusionPipeline
25
+ import torch
26
+
27
+ model_id = "Fictiverse/Stable_Diffusion_PaperCut_Model"
28
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
29
+ pipe = pipe.to("cuda")
30
+
31
+ prompt = "PaperCut R2-D2"
32
+ image = pipe(prompt).images[0]
33
+
34
+ image.save("./R2-D2.png")
35
+ ```
36
+
37
+ ### ✨ Community spotlight :
38
+ @PiyarSquare :
39
+ [![PiyarSquare video](https://img.youtube.com/vi/wQWHnZlxFj8/0.jpg)](https://www.youtube.com/watch?v=wQWHnZlxFj8)
40
+ @MrPlasm0 :
41
+ [![MrPlasm0 video](https://img.youtube.com/vi/J68hZ_-L6w4/0.jpg)](https://www.youtube.com/watch?v=J68hZ_-L6w4)
42
+ @omsk13 :
43
+ [![Omsk Music video](https://img.youtube.com/vi/BCZOD2AQCFg/0.jpg)](https://www.youtube.com/watch?v=BCZOD2AQCFg)