Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
widget:
|
11 |
+
- text: a photo of Ahmad, with a neatly trimmed beard and styled hair, wearing a dark
|
12 |
+
green sweater and black jeans, sitting in a rustic café with a cup of tea and
|
13 |
+
a notebook.
|
14 |
+
---
|
15 |
+
|
16 |
+
# Model trained by ahmadmac on the ahmadmac/human dataset.
|
17 |
+
|
18 |
+
This is a Stable Diffusion model fine-tuned on my own images. It can be used by modifying the `instance_prompt`: **a photo of Ahmad **
|
19 |
+
|
20 |
+
## Description
|
21 |
+
|
22 |
+
|
23 |
+
This is a Stable Diffusion model fine-tuned on my own images.
|
24 |
+
|
25 |
+
|
26 |
+
## Usage
|
27 |
+
|
28 |
+
```python
|
29 |
+
from diffusers import StableDiffusionPipeline
|
30 |
+
|
31 |
+
pipeline = StableDiffusionPipeline.from_pretrained('ahmadmac/Images_Generation')
|
32 |
+
image = pipeline().images[0]
|
33 |
+
image
|
34 |
+
```
|