Spaces:
Runtime error
Runtime error
echen01
commited on
Commit
·
1ab2789
1
Parent(s):
0513aaf
dd reqs
Browse files- .gitignore +160 -0
- requirements.txt +172 -0
.gitignore
ADDED
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# C extensions
|
7 |
+
*.so
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
.Python
|
11 |
+
build/
|
12 |
+
develop-eggs/
|
13 |
+
dist/
|
14 |
+
downloads/
|
15 |
+
eggs/
|
16 |
+
.eggs/
|
17 |
+
lib/
|
18 |
+
lib64/
|
19 |
+
parts/
|
20 |
+
sdist/
|
21 |
+
var/
|
22 |
+
wheels/
|
23 |
+
share/python-wheels/
|
24 |
+
*.egg-info/
|
25 |
+
.installed.cfg
|
26 |
+
*.egg
|
27 |
+
MANIFEST
|
28 |
+
|
29 |
+
# PyInstaller
|
30 |
+
# Usually these files are written by a python script from a template
|
31 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32 |
+
*.manifest
|
33 |
+
*.spec
|
34 |
+
|
35 |
+
# Installer logs
|
36 |
+
pip-log.txt
|
37 |
+
pip-delete-this-directory.txt
|
38 |
+
|
39 |
+
# Unit test / coverage reports
|
40 |
+
htmlcov/
|
41 |
+
.tox/
|
42 |
+
.nox/
|
43 |
+
.coverage
|
44 |
+
.coverage.*
|
45 |
+
.cache
|
46 |
+
nosetests.xml
|
47 |
+
coverage.xml
|
48 |
+
*.cover
|
49 |
+
*.py,cover
|
50 |
+
.hypothesis/
|
51 |
+
.pytest_cache/
|
52 |
+
cover/
|
53 |
+
|
54 |
+
# Translations
|
55 |
+
*.mo
|
56 |
+
*.pot
|
57 |
+
|
58 |
+
# Django stuff:
|
59 |
+
*.log
|
60 |
+
local_settings.py
|
61 |
+
db.sqlite3
|
62 |
+
db.sqlite3-journal
|
63 |
+
|
64 |
+
# Flask stuff:
|
65 |
+
instance/
|
66 |
+
.webassets-cache
|
67 |
+
|
68 |
+
# Scrapy stuff:
|
69 |
+
.scrapy
|
70 |
+
|
71 |
+
# Sphinx documentation
|
72 |
+
docs/_build/
|
73 |
+
|
74 |
+
# PyBuilder
|
75 |
+
.pybuilder/
|
76 |
+
target/
|
77 |
+
|
78 |
+
# Jupyter Notebook
|
79 |
+
.ipynb_checkpoints
|
80 |
+
|
81 |
+
# IPython
|
82 |
+
profile_default/
|
83 |
+
ipython_config.py
|
84 |
+
|
85 |
+
# pyenv
|
86 |
+
# For a library or package, you might want to ignore these files since the code is
|
87 |
+
# intended to run in multiple environments; otherwise, check them in:
|
88 |
+
# .python-version
|
89 |
+
|
90 |
+
# pipenv
|
91 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
92 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
93 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
94 |
+
# install all needed dependencies.
|
95 |
+
#Pipfile.lock
|
96 |
+
|
97 |
+
# poetry
|
98 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
99 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
100 |
+
# commonly ignored for libraries.
|
101 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
102 |
+
#poetry.lock
|
103 |
+
|
104 |
+
# pdm
|
105 |
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
106 |
+
#pdm.lock
|
107 |
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
108 |
+
# in version control.
|
109 |
+
# https://pdm.fming.dev/#use-with-ide
|
110 |
+
.pdm.toml
|
111 |
+
|
112 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
113 |
+
__pypackages__/
|
114 |
+
|
115 |
+
# Celery stuff
|
116 |
+
celerybeat-schedule
|
117 |
+
celerybeat.pid
|
118 |
+
|
119 |
+
# SageMath parsed files
|
120 |
+
*.sage.py
|
121 |
+
|
122 |
+
# Environments
|
123 |
+
.env
|
124 |
+
.venv
|
125 |
+
env/
|
126 |
+
venv/
|
127 |
+
ENV/
|
128 |
+
env.bak/
|
129 |
+
venv.bak/
|
130 |
+
|
131 |
+
# Spyder project settings
|
132 |
+
.spyderproject
|
133 |
+
.spyproject
|
134 |
+
|
135 |
+
# Rope project settings
|
136 |
+
.ropeproject
|
137 |
+
|
138 |
+
# mkdocs documentation
|
139 |
+
/site
|
140 |
+
|
141 |
+
# mypy
|
142 |
+
.mypy_cache/
|
143 |
+
.dmypy.json
|
144 |
+
dmypy.json
|
145 |
+
|
146 |
+
# Pyre type checker
|
147 |
+
.pyre/
|
148 |
+
|
149 |
+
# pytype static type analyzer
|
150 |
+
.pytype/
|
151 |
+
|
152 |
+
# Cython debug symbols
|
153 |
+
cython_debug/
|
154 |
+
|
155 |
+
# PyCharm
|
156 |
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
157 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
158 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
+
#.idea/
|
requirements.txt
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==1.4.0
|
2 |
+
aiofiles==23.1.0
|
3 |
+
aiohttp==3.8.4
|
4 |
+
aiosignal==1.3.1
|
5 |
+
altair==5.0.1
|
6 |
+
anyio==3.6.2
|
7 |
+
appdirs==1.4.4
|
8 |
+
argon2-cffi==21.3.0
|
9 |
+
argon2-cffi-bindings==21.2.0
|
10 |
+
arrow==1.2.3
|
11 |
+
asttokens==2.2.1
|
12 |
+
async-timeout==4.0.2
|
13 |
+
attrs==22.2.0
|
14 |
+
backcall==0.2.0
|
15 |
+
beautifulsoup4==4.12.0
|
16 |
+
bleach==6.0.0
|
17 |
+
certifi @ file:///croot/certifi_1671487769961/work/certifi
|
18 |
+
cffi==1.15.1
|
19 |
+
charset-normalizer==3.1.0
|
20 |
+
click==8.1.3
|
21 |
+
comm==0.1.3
|
22 |
+
contourpy==1.0.7
|
23 |
+
cycler==0.11.0
|
24 |
+
debugpy==1.6.6
|
25 |
+
decorator==5.1.1
|
26 |
+
defusedxml==0.7.1
|
27 |
+
dlib==19.24.1
|
28 |
+
docker-pycreds==0.4.0
|
29 |
+
docopt==0.6.2
|
30 |
+
executing==1.2.0
|
31 |
+
face-alignment==1.3.5
|
32 |
+
face-detection==0.2.2
|
33 |
+
face-recognition==1.3.0
|
34 |
+
face-recognition-models==0.3.0
|
35 |
+
fastapi==0.96.0
|
36 |
+
fastjsonschema==2.16.3
|
37 |
+
ffmpy==0.3.0
|
38 |
+
filelock==3.12.0
|
39 |
+
fonttools==4.39.3
|
40 |
+
fqdn==1.5.1
|
41 |
+
frozenlist==1.3.3
|
42 |
+
fsspec==2023.5.0
|
43 |
+
gitdb==4.0.10
|
44 |
+
GitPython==3.1.31
|
45 |
+
gradio==3.33.1
|
46 |
+
gradio_client==0.2.5
|
47 |
+
h11==0.14.0
|
48 |
+
httpcore==0.17.2
|
49 |
+
httpx==0.24.1
|
50 |
+
huggingface-hub==0.15.1
|
51 |
+
idna==3.4
|
52 |
+
imageio==2.28.1
|
53 |
+
imageio-ffmpeg==0.4.3
|
54 |
+
importlib-metadata==6.1.0
|
55 |
+
importlib-resources==5.12.0
|
56 |
+
ipykernel==6.22.0
|
57 |
+
ipython==8.12.0
|
58 |
+
ipython-genutils==0.2.0
|
59 |
+
ipywidgets==8.0.6
|
60 |
+
isoduration==20.11.0
|
61 |
+
jedi==0.18.2
|
62 |
+
Jinja2==3.1.2
|
63 |
+
jsonpointer==2.3
|
64 |
+
jsonschema==4.17.3
|
65 |
+
jupyter==1.0.0
|
66 |
+
jupyter-console==6.6.3
|
67 |
+
jupyter-events==0.6.3
|
68 |
+
jupyter_client==8.1.0
|
69 |
+
jupyter_core==5.3.0
|
70 |
+
jupyter_server==2.5.0
|
71 |
+
jupyter_server_terminals==0.4.4
|
72 |
+
jupyterlab-pygments==0.2.2
|
73 |
+
jupyterlab-widgets==3.0.7
|
74 |
+
kiwisolver==1.4.4
|
75 |
+
lazy_loader==0.2
|
76 |
+
linkify-it-py==2.0.2
|
77 |
+
llvmlite==0.40.0
|
78 |
+
lpips==0.1.4
|
79 |
+
markdown-it-py==2.2.0
|
80 |
+
MarkupSafe==2.1.2
|
81 |
+
matplotlib==3.7.1
|
82 |
+
matplotlib-inline==0.1.6
|
83 |
+
mdit-py-plugins==0.3.3
|
84 |
+
mdurl==0.1.2
|
85 |
+
mistune==2.0.5
|
86 |
+
multidict==6.0.4
|
87 |
+
nbclassic==0.5.4
|
88 |
+
nbclient==0.7.2
|
89 |
+
nbconvert==7.2.10
|
90 |
+
nbformat==5.8.0
|
91 |
+
nest-asyncio==1.5.6
|
92 |
+
networkx==3.1
|
93 |
+
ninja==1.11.1
|
94 |
+
notebook==6.5.3
|
95 |
+
notebook_shim==0.2.2
|
96 |
+
numba==0.57.0
|
97 |
+
numpy==1.24.2
|
98 |
+
opencv-python==4.7.0.72
|
99 |
+
orjson==3.9.0
|
100 |
+
packaging==23.0
|
101 |
+
pandas==2.0.2
|
102 |
+
pandocfilters==1.5.0
|
103 |
+
parso==0.8.3
|
104 |
+
pathtools==0.1.2
|
105 |
+
pexpect==4.8.0
|
106 |
+
pickleshare==0.7.5
|
107 |
+
Pillow==9.4.0
|
108 |
+
pipreqs==0.4.13
|
109 |
+
platformdirs==3.2.0
|
110 |
+
prometheus-client==0.16.0
|
111 |
+
prompt-toolkit==3.0.38
|
112 |
+
protobuf==4.22.1
|
113 |
+
psutil==5.9.4
|
114 |
+
ptyprocess==0.7.0
|
115 |
+
pure-eval==0.2.2
|
116 |
+
pycparser==2.21
|
117 |
+
pydantic==1.10.8
|
118 |
+
pydub==0.25.1
|
119 |
+
Pygments==2.14.0
|
120 |
+
pyparsing==3.0.9
|
121 |
+
pyrsistent==0.19.3
|
122 |
+
pyspng==0.1.1
|
123 |
+
python-dateutil==2.8.2
|
124 |
+
python-json-logger==2.0.7
|
125 |
+
python-multipart==0.0.6
|
126 |
+
pytz==2023.3
|
127 |
+
PyWavelets==1.4.1
|
128 |
+
PyYAML==6.0
|
129 |
+
pyzmq==25.0.2
|
130 |
+
qtconsole==5.4.1
|
131 |
+
QtPy==2.3.1
|
132 |
+
requests==2.28.2
|
133 |
+
rfc3339-validator==0.1.4
|
134 |
+
rfc3986-validator==0.1.1
|
135 |
+
scikit-image==0.20.0
|
136 |
+
scipy==1.9.1
|
137 |
+
semantic-version==2.10.0
|
138 |
+
Send2Trash==1.8.0
|
139 |
+
sentry-sdk==1.18.0
|
140 |
+
setproctitle==1.3.2
|
141 |
+
six==1.16.0
|
142 |
+
smmap==5.0.0
|
143 |
+
sniffio==1.3.0
|
144 |
+
soupsieve==2.4
|
145 |
+
stack-data==0.6.2
|
146 |
+
starlette==0.27.0
|
147 |
+
terminado==0.17.1
|
148 |
+
tifffile==2023.4.12
|
149 |
+
tinycss2==1.2.1
|
150 |
+
toolz==0.12.0
|
151 |
+
torch==1.9.1+cu111
|
152 |
+
torchaudio==0.9.1
|
153 |
+
torchvision==0.10.1+cu111
|
154 |
+
tornado==6.2
|
155 |
+
tqdm==4.65.0
|
156 |
+
traitlets==5.9.0
|
157 |
+
typing_extensions==4.5.0
|
158 |
+
tzdata==2023.3
|
159 |
+
uc-micro-py==1.0.2
|
160 |
+
uri-template==1.2.0
|
161 |
+
urllib3==1.26.15
|
162 |
+
uvicorn==0.22.0
|
163 |
+
wandb==0.14.0
|
164 |
+
wcwidth==0.2.6
|
165 |
+
webcolors==1.13
|
166 |
+
webencodings==0.5.1
|
167 |
+
websocket-client==1.5.1
|
168 |
+
websockets==11.0.3
|
169 |
+
widgetsnbextension==4.0.7
|
170 |
+
yarg==0.1.9
|
171 |
+
yarl==1.9.2
|
172 |
+
zipp==3.15.0
|