Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# pytorch-stable-diffusion
|
| 2 |
PyTorch implementation of Stable Diffusion from scratch
|
| 3 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- stable-diffusion
|
| 6 |
+
- pytorch
|
| 7 |
+
- text-to-image
|
| 8 |
+
- image-to-image
|
| 9 |
+
- diffusion-models
|
| 10 |
+
- computer-vision
|
| 11 |
+
- generative-ai
|
| 12 |
+
license: mit
|
| 13 |
+
library_name: pytorch
|
| 14 |
+
pipeline_tag: text-to-image
|
| 15 |
+
base_model: stable-diffusion-v1-5
|
| 16 |
+
model-index:
|
| 17 |
+
- name: pytorch-stable-diffusion
|
| 18 |
+
results:
|
| 19 |
+
- task:
|
| 20 |
+
type: text-to-image
|
| 21 |
+
name: Text-to-Image Generation
|
| 22 |
+
dataset:
|
| 23 |
+
type: custom
|
| 24 |
+
name: Stable Diffusion v1.5
|
| 25 |
+
metrics:
|
| 26 |
+
- type: inference_steps
|
| 27 |
+
value: 50
|
| 28 |
+
- type: cfg_scale
|
| 29 |
+
value: 8
|
| 30 |
+
- type: image_size
|
| 31 |
+
value: 512x512
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
# pytorch-stable-diffusion
|
| 35 |
PyTorch implementation of Stable Diffusion from scratch
|
| 36 |
|