harveymannering commited on
Commit
0784cf5
1 Parent(s): c3a22b0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - landscape
11
+ widget:
12
+ - text: a photo of ioprt cliff with a dog
13
+ ---
14
+
15
+ # DreamBooth model for the ioprt concept trained by harveymannering on the /content/sample_data/images/ dataset.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the ioprt concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of ioprt cliff**
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 `cliff` images for the landscape theme. We used the jurassic-coast dataset which contains 14 images of a particular cliff on the Isle of Portland on the south coast of England.
25
+
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+ from diffusers import StableDiffusionPipeline
31
+
32
+ pipeline = StableDiffusionPipeline.from_pretrained('harveymannering/jurassic-coast')
33
+ image = pipeline().images[0]
34
+ image
35
+ ```