Allen458 commited on
Commit
e5b697f
·
verified ·
1 Parent(s): 63028d6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 kstm toy fox in the Acropolis
13
+ ---
14
+
15
+ # DreamBooth model for the kstm concept trained by Allen458 on the custom_toy_fox_dataset dataset.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the kstm concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of kstm toy fox**
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
+ This is a custom model trained on my toy fox images.
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from diffusers import StableDiffusionPipeline
29
+
30
+ pipeline = StableDiffusionPipeline.from_pretrained('Allen458/toy_fox')
31
+ image = pipeline().images[0]
32
+ image
33
+ ```