ApoorvBrooklyn commited on
Commit
8a8f559
·
verified ·
1 Parent(s): a005cd2

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +47 -85
.gitignore CHANGED
@@ -1,85 +1,47 @@
1
- # Virtual environments
2
- myenv/
3
- venv/
4
- env/
5
- .venv/
6
- .env/
7
-
8
- # Python cache
9
- __pycache__/
10
- *.py[cod]
11
- *$py.class
12
- *.so
13
-
14
- # Distribution / packaging
15
- .Python
16
- build/
17
- develop-eggs/
18
- dist/
19
- downloads/
20
- eggs/
21
- .eggs/
22
- lib/
23
- lib64/
24
- parts/
25
- sdist/
26
- var/
27
- wheels/
28
- *.egg-info/
29
- .installed.cfg
30
- *.egg
31
-
32
- # PyInstaller
33
- *.manifest
34
- *.spec
35
-
36
- # Installer logs
37
- pip-log.txt
38
- pip-delete-this-directory.txt
39
-
40
- # Unit test / coverage reports
41
- htmlcov/
42
- .tox/
43
- .coverage
44
- .coverage.*
45
- .cache
46
- nosetests.xml
47
- coverage.xml
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