hippoleveque commited on
Commit
1745a0a
·
verified ·
1 Parent(s): d95cdb9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - diffusion-models-class
9
+ widget:
10
+ - text: an illustration of a tree in retfutbrr style
11
+ ---
12
+
13
+ # DreamBooth model for the retfutbrr concept trained by hippoleveque on the hippoleveque/retrofuturistic-images dataset.
14
+
15
+ This is a Stable Diffusion model fine-tuned on the retfutbrr concept with DreamBooth. It can be used by modifying the `instance_prompt`: **an illustration of retfutbrr style**
16
+
17
+
18
+ ## Description
19
+
20
+
21
+ This is a Stable Diffusion v1.4 model fine-tuned on `retfutbrr style`
22
+
23
+
24
+ ## Usage
25
+
26
+ ```python
27
+ from diffusers import StableDiffusionPipeline
28
+
29
+ pipeline = StableDiffusionPipeline.from_pretrained('hippoleveque/retfutbrr-style-sd-v14')
30
+ image = pipeline().images[0]
31
+ image
32
+ ```