Spaces:
Runtime error
Runtime error
gitignore
Browse files- .gitignore +157 -0
- gfpgan/.gitignore +0 -139
- wav2lip/.gitignore +0 -16
.gitignore
CHANGED
@@ -1,2 +1,159 @@
|
|
1 |
venv/
|
2 |
.idea/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
venv/
|
2 |
.idea/
|
3 |
+
|
4 |
+
*.pkl
|
5 |
+
*.jpg
|
6 |
+
*.mp4
|
7 |
+
*.pth
|
8 |
+
*.pyc
|
9 |
+
__pycache__
|
10 |
+
*.h5
|
11 |
+
*.avi
|
12 |
+
*.wav
|
13 |
+
filelists/*.txt
|
14 |
+
evaluation/test_filelists/lr*.txt
|
15 |
+
*.pyc
|
16 |
+
*.mkv
|
17 |
+
*.gif
|
18 |
+
*.webm
|
19 |
+
*.mp3
|
20 |
+
|
21 |
+
# ignored folders
|
22 |
+
datasets/*
|
23 |
+
experiments/*
|
24 |
+
results/*
|
25 |
+
tb_logger/*
|
26 |
+
wandb/*
|
27 |
+
tmp/*
|
28 |
+
|
29 |
+
version.py
|
30 |
+
|
31 |
+
# Byte-compiled / optimized / DLL files
|
32 |
+
__pycache__/
|
33 |
+
*.py[cod]
|
34 |
+
*$py.class
|
35 |
+
|
36 |
+
# C extensions
|
37 |
+
*.so
|
38 |
+
|
39 |
+
# Distribution / packaging
|
40 |
+
.Python
|
41 |
+
build/
|
42 |
+
develop-eggs/
|
43 |
+
dist/
|
44 |
+
downloads/
|
45 |
+
eggs/
|
46 |
+
.eggs/
|
47 |
+
lib/
|
48 |
+
lib64/
|
49 |
+
parts/
|
50 |
+
sdist/
|
51 |
+
var/
|
52 |
+
wheels/
|
53 |
+
pip-wheel-metadata/
|
54 |
+
share/python-wheels/
|
55 |
+
*.egg-info/
|
56 |
+
.installed.cfg
|
57 |
+
*.egg
|
58 |
+
MANIFEST
|
59 |
+
|
60 |
+
# PyInstaller
|
61 |
+
# Usually these files are written by a python script from a template
|
62 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
63 |
+
*.manifest
|
64 |
+
*.spec
|
65 |
+
|
66 |
+
# Installer logs
|
67 |
+
pip-log.txt
|
68 |
+
pip-delete-this-directory.txt
|
69 |
+
|
70 |
+
# Unit test / coverage reports
|
71 |
+
htmlcov/
|
72 |
+
.tox/
|
73 |
+
.nox/
|
74 |
+
.coverage
|
75 |
+
.coverage.*
|
76 |
+
.cache
|
77 |
+
nosetests.xml
|
78 |
+
coverage.xml
|
79 |
+
*.cover
|
80 |
+
*.py,cover
|
81 |
+
.hypothesis/
|
82 |
+
.pytest_cache/
|
83 |
+
|
84 |
+
# Translations
|
85 |
+
*.mo
|
86 |
+
*.pot
|
87 |
+
|
88 |
+
# Django stuff:
|
89 |
+
*.log
|
90 |
+
local_settings.py
|
91 |
+
db.sqlite3
|
92 |
+
db.sqlite3-journal
|
93 |
+
|
94 |
+
# Flask stuff:
|
95 |
+
instance/
|
96 |
+
.webassets-cache
|
97 |
+
|
98 |
+
# Scrapy stuff:
|
99 |
+
.scrapy
|
100 |
+
|
101 |
+
# Sphinx documentation
|
102 |
+
docs/_build/
|
103 |
+
|
104 |
+
# PyBuilder
|
105 |
+
target/
|
106 |
+
|
107 |
+
# Jupyter Notebook
|
108 |
+
.ipynb_checkpoints
|
109 |
+
|
110 |
+
# IPython
|
111 |
+
profile_default/
|
112 |
+
ipython_config.py
|
113 |
+
|
114 |
+
# pyenv
|
115 |
+
.python-version
|
116 |
+
|
117 |
+
# pipenv
|
118 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
119 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
120 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
121 |
+
# install all needed dependencies.
|
122 |
+
#Pipfile.lock
|
123 |
+
|
124 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
125 |
+
__pypackages__/
|
126 |
+
|
127 |
+
# Celery stuff
|
128 |
+
celerybeat-schedule
|
129 |
+
celerybeat.pid
|
130 |
+
|
131 |
+
# SageMath parsed files
|
132 |
+
*.sage.py
|
133 |
+
|
134 |
+
# Environments
|
135 |
+
.env
|
136 |
+
.venv
|
137 |
+
env/
|
138 |
+
venv/
|
139 |
+
ENV/
|
140 |
+
env.bak/
|
141 |
+
venv.bak/
|
142 |
+
|
143 |
+
# Spyder project settings
|
144 |
+
.spyderproject
|
145 |
+
.spyproject
|
146 |
+
|
147 |
+
# Rope project settings
|
148 |
+
.ropeproject
|
149 |
+
|
150 |
+
# mkdocs documentation
|
151 |
+
/site
|
152 |
+
|
153 |
+
# mypy
|
154 |
+
.mypy_cache/
|
155 |
+
.dmypy.json
|
156 |
+
dmypy.json
|
157 |
+
|
158 |
+
# Pyre type checker
|
159 |
+
.pyre/
|
gfpgan/.gitignore
DELETED
@@ -1,139 +0,0 @@
|
|
1 |
-
# ignored folders
|
2 |
-
datasets/*
|
3 |
-
experiments/*
|
4 |
-
results/*
|
5 |
-
tb_logger/*
|
6 |
-
wandb/*
|
7 |
-
tmp/*
|
8 |
-
|
9 |
-
version.py
|
10 |
-
|
11 |
-
# Byte-compiled / optimized / DLL files
|
12 |
-
__pycache__/
|
13 |
-
*.py[cod]
|
14 |
-
*$py.class
|
15 |
-
|
16 |
-
# C extensions
|
17 |
-
*.so
|
18 |
-
|
19 |
-
# Distribution / packaging
|
20 |
-
.Python
|
21 |
-
build/
|
22 |
-
develop-eggs/
|
23 |
-
dist/
|
24 |
-
downloads/
|
25 |
-
eggs/
|
26 |
-
.eggs/
|
27 |
-
lib/
|
28 |
-
lib64/
|
29 |
-
parts/
|
30 |
-
sdist/
|
31 |
-
var/
|
32 |
-
wheels/
|
33 |
-
pip-wheel-metadata/
|
34 |
-
share/python-wheels/
|
35 |
-
*.egg-info/
|
36 |
-
.installed.cfg
|
37 |
-
*.egg
|
38 |
-
MANIFEST
|
39 |
-
|
40 |
-
# PyInstaller
|
41 |
-
# Usually these files are written by a python script from a template
|
42 |
-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
43 |
-
*.manifest
|
44 |
-
*.spec
|
45 |
-
|
46 |
-
# Installer logs
|
47 |
-
pip-log.txt
|
48 |
-
pip-delete-this-directory.txt
|
49 |
-
|
50 |
-
# Unit test / coverage reports
|
51 |
-
htmlcov/
|
52 |
-
.tox/
|
53 |
-
.nox/
|
54 |
-
.coverage
|
55 |
-
.coverage.*
|
56 |
-
.cache
|
57 |
-
nosetests.xml
|
58 |
-
coverage.xml
|
59 |
-
*.cover
|
60 |
-
*.py,cover
|
61 |
-
.hypothesis/
|
62 |
-
.pytest_cache/
|
63 |
-
|
64 |
-
# Translations
|
65 |
-
*.mo
|
66 |
-
*.pot
|
67 |
-
|
68 |
-
# Django stuff:
|
69 |
-
*.log
|
70 |
-
local_settings.py
|
71 |
-
db.sqlite3
|
72 |
-
db.sqlite3-journal
|
73 |
-
|
74 |
-
# Flask stuff:
|
75 |
-
instance/
|
76 |
-
.webassets-cache
|
77 |
-
|
78 |
-
# Scrapy stuff:
|
79 |
-
.scrapy
|
80 |
-
|
81 |
-
# Sphinx documentation
|
82 |
-
docs/_build/
|
83 |
-
|
84 |
-
# PyBuilder
|
85 |
-
target/
|
86 |
-
|
87 |
-
# Jupyter Notebook
|
88 |
-
.ipynb_checkpoints
|
89 |
-
|
90 |
-
# IPython
|
91 |
-
profile_default/
|
92 |
-
ipython_config.py
|
93 |
-
|
94 |
-
# pyenv
|
95 |
-
.python-version
|
96 |
-
|
97 |
-
# pipenv
|
98 |
-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
99 |
-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
100 |
-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
101 |
-
# install all needed dependencies.
|
102 |
-
#Pipfile.lock
|
103 |
-
|
104 |
-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
105 |
-
__pypackages__/
|
106 |
-
|
107 |
-
# Celery stuff
|
108 |
-
celerybeat-schedule
|
109 |
-
celerybeat.pid
|
110 |
-
|
111 |
-
# SageMath parsed files
|
112 |
-
*.sage.py
|
113 |
-
|
114 |
-
# Environments
|
115 |
-
.env
|
116 |
-
.venv
|
117 |
-
env/
|
118 |
-
venv/
|
119 |
-
ENV/
|
120 |
-
env.bak/
|
121 |
-
venv.bak/
|
122 |
-
|
123 |
-
# Spyder project settings
|
124 |
-
.spyderproject
|
125 |
-
.spyproject
|
126 |
-
|
127 |
-
# Rope project settings
|
128 |
-
.ropeproject
|
129 |
-
|
130 |
-
# mkdocs documentation
|
131 |
-
/site
|
132 |
-
|
133 |
-
# mypy
|
134 |
-
.mypy_cache/
|
135 |
-
.dmypy.json
|
136 |
-
dmypy.json
|
137 |
-
|
138 |
-
# Pyre type checker
|
139 |
-
.pyre/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wav2lip/.gitignore
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
*.pkl
|
2 |
-
*.jpg
|
3 |
-
*.mp4
|
4 |
-
*.pth
|
5 |
-
*.pyc
|
6 |
-
__pycache__
|
7 |
-
*.h5
|
8 |
-
*.avi
|
9 |
-
*.wav
|
10 |
-
filelists/*.txt
|
11 |
-
evaluation/test_filelists/lr*.txt
|
12 |
-
*.pyc
|
13 |
-
*.mkv
|
14 |
-
*.gif
|
15 |
-
*.webm
|
16 |
-
*.mp3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|