matallanas commited on
Commit
7ac41e5
1 Parent(s): 6659e9d

Upload README.md with huggingface_hub

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