Sander Land commited on
Commit
b852105
1 Parent(s): 9c57341

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 photo of three zzelda cat attacking an astronaut in space
13
+ ---
14
+
15
+ # DreamBooth model for the zzelda concept trained by Sanderbaduk on dataset of cats.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the zzelda concept with DreamBooth. It can be used by using the phrase 'zzelda cat' in a prompt.**
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 images of my mum's cat Zelda for the animal theme.
25
+
26
+ To experiment a bit, I used a custom prompt for each image based on the file name.
27
+ This was trained on CPU after encountering issues with CUDA, taking around 2 hours on 32 cores.
28
+
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ from diffusers import StableDiffusionPipeline
34
+
35
+ pipeline = StableDiffusionPipeline.from_pretrained('Sanderbaduk/zelda-the-cat')
36
+ image = pipeline().images[0]
37
+ image
38
+ ```