ajesteves commited on
Commit
14da618
·
verified ·
1 Parent(s): d9fa83a

Upload README.md with huggingface_hub

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