MouseTrap commited on
Commit
bd04929
1 Parent(s): 83e968b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 dataset.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the Mr. Maow Maow concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a drawing of Mr. Maow Maow cat**
18
+
19
+ This model was created as part of the DreamBooth Hackathon 🔥. Visit the [organisation page](https://huggingface.co/dreambooth-hackathon) for instructions on how to take part!
20
+
21
+ ## Description
22
+
23
+
24
+ This is a Stable Diffusion model fine-tuned on `cat` images for the animal theme.
25
+ Enter prompts as 'drawing of Mr. Maow Maow cat' to get the illustration-like outputs.
26
+
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ from diffusers import StableDiffusionPipeline
32
+
33
+ pipeline = StableDiffusionPipeline.from_pretrained('MouseTrap/maow-maow-machine-v1')
34
+ image = pipeline().images[0]
35
+ image
36
+ ```