Upload .gitignore with huggingface_hub
Browse files- .gitignore +47 -85
.gitignore
CHANGED
@@ -1,85 +1,47 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
*.cover
|
49 |
-
.hypothesis/
|
50 |
-
.pytest_cache/
|
51 |
-
|
52 |
-
# Jupyter Notebook
|
53 |
-
.ipynb_checkpoints
|
54 |
-
|
55 |
-
# pyenv
|
56 |
-
.python-version
|
57 |
-
|
58 |
-
# Environments
|
59 |
-
.env
|
60 |
-
.venv
|
61 |
-
env/
|
62 |
-
venv/
|
63 |
-
ENV/
|
64 |
-
env.bak/
|
65 |
-
venv.bak/
|
66 |
-
|
67 |
-
# IDE
|
68 |
-
.vscode/
|
69 |
-
.idea/
|
70 |
-
*.swp
|
71 |
-
*.swo
|
72 |
-
*~
|
73 |
-
|
74 |
-
# OS
|
75 |
-
.DS_Store
|
76 |
-
.DS_Store?
|
77 |
-
._*
|
78 |
-
.Spotlight-V100
|
79 |
-
.Trashes
|
80 |
-
ehthumbs.db
|
81 |
-
Thumbs.db
|
82 |
-
|
83 |
-
# Project specific
|
84 |
-
main/myenv/
|
85 |
-
main/__pycache__/
|
|
|
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 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
## Features:
|
44 |
+
- Text-to-image generation
|
45 |
+
- Image-to-image generation
|
46 |
+
- Support for fine-tuned models
|
47 |
+
- PyTorch implementation from scratch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|