Yntec commited on
Commit
405950f
·
verified ·
1 Parent(s): 022eaca

Upload Fictiverse/Stable_Diffusion_FluidArt_Model/README.md with huggingface_hub

Browse files
Fictiverse/Stable_Diffusion_FluidArt_Model/README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - text-to-image
5
+ ---
6
+ # Fluid Art model V1
7
+ This is the fine-tuned Stable Diffusion model trained on Fluid Art images.
8
+
9
+ Use **FluidArt** in your prompts.
10
+
11
+ ### Sample images:
12
+ ![FluidArt sample](https://s3.amazonaws.com/moonup/production/uploads/1667898583757-635749860725c2f190a76e88.jpeg)
13
+ Based on StableDiffusion 1.5 model
14
+
15
+ ### 🧨 Diffusers
16
+
17
+ This model can be used just like any other Stable Diffusion model. For more information,
18
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
19
+
20
+ 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]().
21
+
22
+ ```python
23
+ from diffusers import StableDiffusionPipeline
24
+ import torch
25
+
26
+ model_id = "Fictiverse/Stable_Diffusion_PaperCut_Model"
27
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
28
+ pipe = pipe.to("cuda")
29
+
30
+ prompt = "PaperCut R2-D2"
31
+ image = pipe(prompt).images[0]
32
+
33
+ image.save("./R2-D2.png")
34
+ ```