kael558 commited on
Commit
0258bd2
·
1 Parent(s): 908ef7a

fixed requirements

Browse files
Files changed (2) hide show
  1. .gitignore +200 -1
  2. requirements.txt +9 -10
.gitignore CHANGED
@@ -5,4 +5,203 @@ MiDaS/
5
  models/*
6
  pytorch3d-lite/
7
  stable-diffusion/
8
- .idea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  models/*
6
  pytorch3d-lite/
7
  stable-diffusion/
8
+ .idea
9
+
10
+ # Created by .ignore support plugin (hsz.mobi)
11
+ ### Python template
12
+ # Byte-compiled / optimized / DLL files
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+
17
+ # C extensions
18
+ *.so
19
+
20
+ # Distribution / packaging
21
+ .Python
22
+ env/
23
+ build/
24
+ develop-eggs/
25
+ dist/
26
+ downloads/
27
+ eggs/
28
+ .eggs/
29
+ lib/
30
+ lib64/
31
+ parts/
32
+ sdist/
33
+ var/
34
+ *.egg-info/
35
+ .installed.cfg
36
+ *.egg
37
+
38
+ # PyInstaller
39
+ # Usually these files are written by a python script from a template
40
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
41
+ *.manifest
42
+ *.spec
43
+
44
+ # Installer logs
45
+ pip-log.txt
46
+ pip-delete-this-directory.txt
47
+
48
+ # Unit test / coverage reports
49
+ htmlcov/
50
+ .tox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *,cover
57
+ .hypothesis/
58
+
59
+ # Translations
60
+ *.mo
61
+ *.pot
62
+
63
+ # Django stuff:
64
+ *.log
65
+ local_settings.py
66
+
67
+ # Flask stuff:
68
+ instance/
69
+ .webassets-cache
70
+
71
+ # Scrapy stuff:
72
+ .scrapy
73
+
74
+ # Sphinx documentation
75
+ docs/_build/
76
+
77
+ # PyBuilder
78
+ target/
79
+
80
+ # IPython Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # pyenv
84
+ .python-version
85
+
86
+ # celery beat schedule file
87
+ celerybeat-schedule
88
+
89
+ # dotenv
90
+ .env
91
+
92
+ # virtualenv
93
+ venv/
94
+ ENV/
95
+ wslvenv/
96
+
97
+ # Spyder project settings
98
+ .spyderproject
99
+
100
+ # Rope project settings
101
+ .ropeproject
102
+ ### VirtualEnv template
103
+ # Virtualenv
104
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
105
+ [Bb]in
106
+ [Ii]nclude
107
+ [Ll]ib
108
+ [Ll]ib64
109
+ [Ll]ocal
110
+ [Ss]cripts
111
+ pyvenv.cfg
112
+ .venv
113
+ pip-selfcheck.json
114
+
115
+ ### JetBrains template
116
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
117
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
118
+
119
+ # User-specific stuff
120
+ .idea/**/workspace.xml
121
+ .idea/**/tasks.xml
122
+ .idea/**/usage.statistics.xml
123
+ .idea/**/dictionaries
124
+ .idea/**/shelf
125
+
126
+ # AWS User-specific
127
+ .idea/**/aws.xml
128
+
129
+ # Generated files
130
+ .idea/**/contentModel.xml
131
+
132
+ # Sensitive or high-churn files
133
+ .idea/**/dataSources/
134
+ .idea/**/dataSources.ids
135
+ .idea/**/dataSources.local.xml
136
+ .idea/**/sqlDataSources.xml
137
+ .idea/**/dynamic.xml
138
+ .idea/**/uiDesigner.xml
139
+ .idea/**/dbnavigator.xml
140
+
141
+ # Gradle
142
+ .idea/**/gradle.xml
143
+ .idea/**/libraries
144
+
145
+ # Gradle and Maven with auto-import
146
+ # When using Gradle or Maven with auto-import, you should exclude module files,
147
+ # since they will be recreated, and may cause churn. Uncomment if using
148
+ # auto-import.
149
+ # .idea/artifacts
150
+ # .idea/compiler.xml
151
+ # .idea/jarRepositories.xml
152
+ # .idea/modules.xml
153
+ # .idea/*.iml
154
+ # .idea/modules
155
+ # *.iml
156
+ # *.ipr
157
+
158
+ # CMake
159
+ cmake-build-*/
160
+
161
+ # Mongo Explorer plugin
162
+ .idea/**/mongoSettings.xml
163
+
164
+ # File-based project format
165
+ *.iws
166
+
167
+ # IntelliJ
168
+ out/
169
+
170
+ # mpeltonen/sbt-idea plugin
171
+ .idea_modules/
172
+
173
+ # JIRA plugin
174
+ atlassian-ide-plugin.xml
175
+
176
+ # Cursive Clojure plugin
177
+ .idea/replstate.xml
178
+
179
+ # SonarLint plugin
180
+ .idea/sonarlint/
181
+
182
+ # Crashlytics plugin (for Android Studio and IntelliJ)
183
+ com_crashlytics_export_strings.xml
184
+ crashlytics.properties
185
+ crashlytics-build.properties
186
+ fabric.properties
187
+
188
+ # Editor-based Rest Client
189
+ .idea/httpRequests
190
+
191
+ # Android studio 3.1+ serialized cache file
192
+ .idea/caches/build_file_checksums.ser
193
+
194
+ # idea folder, uncomment if you don't need it
195
+ .idea
196
+
197
+ # sqlite database
198
+ *.db
199
+
200
+ # index files
201
+ indexes/*
202
+
203
+ # output files
204
+ *.zip
205
+ *.exe
206
+ output/
207
+ output.zip
requirements.txt CHANGED
@@ -1,13 +1,12 @@
1
- --extra-index-url https://download.pytorch.org/whl/cu117
2
- torch==1.12.1+cu117
3
- torchvision==0.13.1+cu117
4
- torchtext==0.13.1
5
- omegaconf==2.2.3
6
- einops==0.4.1
7
- pytorch-lightning==1.7.4
8
- torchmetrics==0.9.3
9
- transformers==4.21.2
10
- kornia==0.6.7
11
  git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers
12
  git+https://github.com/openai/CLIP.git@main#egg=clip
13
  accelerate
 
1
+ torch
2
+ torchvision
3
+ torchtext
4
+ omegaconf
5
+ einops
6
+ pytorch-lightning==1.7.7
7
+ torchmetrics
8
+ transformers
9
+ kornia
 
10
  git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers
11
  git+https://github.com/openai/CLIP.git@main#egg=clip
12
  accelerate