pharmapsychotic commited on
Commit
fab641b
1 Parent(s): 01e3fe4

Readme with examples

Browse files
README.md CHANGED
@@ -1,3 +1,49 @@
1
  ---
2
- license: openrail
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 pssg sugar glider wearing goggles
13
  ---
14
+
15
+ # DreamBooth model for the pssg concept trained by pharmapsychotic
16
+
17
+ This is a Stable Diffusion model fine-tuned on the pssg concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of pssg sugar glider**
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 `sugar glider` AI and photo images for the animal theme. It is based on 16 AI images created by pharmapsychotic with Stable Diffusion and public domain photos.
25
+
26
+
27
+ ## Examples
28
+
29
+ ![](examples/dj.png)
30
+ ![](examples/fantasy1.png)
31
+ ![](examples/fantasy2.png)
32
+ ![](examples/glasses.png)
33
+ ![](examples/goggles.png)
34
+ ![](examples/red_carpet.png)
35
+ ![](examples/robo.png)
36
+ ![](examples/tron.png)
37
+ ![](examples/bitcoin.png)
38
+ ![](examples/casino.png)
39
+
40
+
41
+ ## Usage
42
+
43
+ ```python
44
+ from diffusers import StableDiffusionPipeline
45
+
46
+ pipeline = StableDiffusionPipeline.from_pretrained('pharma/sugar-glider')
47
+ image = pipeline().images[0]
48
+ image
49
+ ```
examples/bitcoin.png ADDED
examples/casino.png ADDED
examples/dj.png ADDED
examples/fantasy1.png ADDED
examples/fantasy2.png ADDED
examples/glasses.png ADDED
examples/goggles.png ADDED
examples/red_carpet.png ADDED
examples/robo.png ADDED
examples/tron.png ADDED