MThonar commited on
Commit
e00d328
·
1 Parent(s): ff5915e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
10
+ ---
11
+
12
+ # DreamBooth model of Link trained by MThonar on the MThonar/link dataset.
13
+
14
+ This is a Stable Diffusion model fine-tuned with Dreambooth on images of Linkk. It can be used by modifying the `instance_prompt`: **a photo of Linkk**
15
+
16
+ ## Description
17
+
18
+ This is a Stable Diffusion model fine-tuned on images of Linkk.
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ from diffusers import StableDiffusionPipeline
24
+
25
+ pipeline = StableDiffusionPipeline.from_pretrained('MThonar/Linkk')
26
+ image = pipeline().images[0]
27
+ image
28
+ ```