li-yan commited on
Commit
9748006
1 Parent(s): d2e8949

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - cats
9
+ widget:
10
+ - text: a photo of maine coon cat on the Golden Gate Bridge
11
+ ---
12
+
13
+ # Trained by li-yan on the li-yan/cat-by-breed dataset.
14
+
15
+ This is a Stable Diffusion model fine-tuned on the cat image by different breeds. It can be used by modifying the `instance_prompt`: **a photo of maine coon cat on the Golden Gate Bridge**
16
+
17
+ ## Description
18
+
19
+
20
+ This is a Stable Diffusion model fine-tuned on dataset "li-yan/cat-by-breed" images for the different breeds of cats.
21
+
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from diffusers import StableDiffusionPipeline
27
+
28
+ pipeline = StableDiffusionPipeline.from_pretrained('li-yan/cat-by-breed-stable-diffusion')
29
+ image = pipeline().images[0]
30
+ image
31
+ ```