Ahmade commited on
Commit
c2554c7
·
1 Parent(s): 073ec73

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
+ {}
3
+ ---
4
+
5
+ ---
6
+ license: creativeml-openrail-m
7
+ tags:
8
+ - pytorch
9
+ - diffusers
10
+ - stable-diffusion
11
+ - text-to-image
12
+ - diffusion-models-class
13
+ - dreambooth-hackathon
14
+
15
+
16
+ # DreamBooth model for the test concept trained by Ahmade on the maderix/flickr_bw_rgb dataset.
17
+
18
+ This is a Stable Diffusion model fine-tuned on the test concept with DreamBooth. It can be used by modifying the `instance_prompt`:
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
+ test
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from diffusers import StableDiffusionPipeline
30
+
31
+ pipeline = StableDiffusionPipeline.from_pretrained('Ahmade/text2imagev2')
32
+ image = pipeline().images[0]
33
+ image
34
+ ```