Prgckwb commited on
Commit
bbeeccb
1 Parent(s): c428b10

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: creativeml-openrail-m
4
+ tags:
5
+ - pytorch
6
+ - diffusers
7
+ - stable-diffusion
8
+ - text-to-image
9
+ - diffusion-models-class
10
+ - dreambooth-hackathon
11
+ - wildcard
12
+ widget:
13
+ - text: a photo of trpfrog
14
+ ---
15
+
16
+ # DreamBooth model for the trpfrog concept trained by Prgckwb on the TrpFrog/trpfrog-icons dataset.
17
+
18
+ This is a Stable Diffusion model fine-tuned on the trpfrog concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of trpfrog**
19
+
20
+ 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!
21
+
22
+ ## Description
23
+
24
+
25
+ This is a Stable Diffusion model fine-tuned on `` images for the wildcard theme.
26
+
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ from diffusers import StableDiffusionPipeline
32
+
33
+ pipeline = StableDiffusionPipeline.from_pretrained('Prgckwb/trpfrog-diffusion')
34
+ image = pipeline().images[0]
35
+ image
36
+ ```