MouseTrap commited on
Commit
369810e
1 Parent(s): 0aed444

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-hackathon
10
+ - animal
11
+ widget:
12
+ - text: a drawing of Mr. Maow Maow cat in outer space
13
+ ---
14
+
15
+ # DreamBooth model for the Mr. Maow Maow concept trained by MouseTrap on the MouseTrap/maow-maow-dataset-v3 dataset.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the Mr. Maow Maow drawings using DreamBooth. It can be used by modifying the `instance_prompt`: **a drawing of Mr. Maow Maow cat**
18
+
19
+ ## Description
20
+
21
+
22
+ Introducing Maow Maow Machine v3!
23
+ This is a Stable Diffusion model fine-tuned on Mr. Maow Maow drawings by MouseTrap (me).
24
+
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from diffusers import StableDiffusionPipeline
30
+
31
+ pipeline = StableDiffusionPipeline.from_pretrained('MouseTrap/maow-maow-machine-v3')
32
+ image = pipeline().images[0]
33
+ image
34
+ ```