Spaces:
Runtime error
Runtime error
Hendrik Schroeter
commited on
Commit
•
d1d2afb
1
Parent(s):
3c5bbc2
Update
Browse files- .gitignore +144 -0
- app.py +1 -0
- noisy.wav +0 -3
- enhanced.wav → samples/DLIVING_combined.wav +2 -2
- clean.wav → samples/p232_019_clean.wav +2 -2
.gitignore
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Own stuff
|
2 |
+
*.wav
|
3 |
+
*.png
|
4 |
+
*.pdf
|
5 |
+
out/
|
6 |
+
export/
|
7 |
+
DeepFilterNet/poetry.lock
|
8 |
+
|
9 |
+
### Rust gitignore ###
|
10 |
+
|
11 |
+
# Generated by Cargo
|
12 |
+
# will have compiled files and executables
|
13 |
+
debug/
|
14 |
+
target/
|
15 |
+
|
16 |
+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
17 |
+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
18 |
+
Cargo.lock
|
19 |
+
|
20 |
+
# These are backup files generated by rustfmt
|
21 |
+
**/*.rs.bk
|
22 |
+
|
23 |
+
### Python gitignore ###
|
24 |
+
|
25 |
+
# Byte-compiled / optimized / DLL files
|
26 |
+
__pycache__/
|
27 |
+
*.py[cod]
|
28 |
+
*$py.class
|
29 |
+
|
30 |
+
# C extensions
|
31 |
+
*.so
|
32 |
+
|
33 |
+
# Distribution / packaging
|
34 |
+
.Python
|
35 |
+
build/
|
36 |
+
develop-eggs/
|
37 |
+
dist/
|
38 |
+
downloads/
|
39 |
+
eggs/
|
40 |
+
.eggs/
|
41 |
+
lib/
|
42 |
+
lib64/
|
43 |
+
parts/
|
44 |
+
sdist/
|
45 |
+
var/
|
46 |
+
wheels/
|
47 |
+
pip-wheel-metadata/
|
48 |
+
share/python-wheels/
|
49 |
+
*.egg-info/
|
50 |
+
.installed.cfg
|
51 |
+
*.egg
|
52 |
+
MANIFEST
|
53 |
+
|
54 |
+
# PyInstaller
|
55 |
+
# Usually these files are written by a python script from a template
|
56 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
57 |
+
*.manifest
|
58 |
+
*.spec
|
59 |
+
|
60 |
+
# Installer logs
|
61 |
+
pip-log.txt
|
62 |
+
pip-delete-this-directory.txt
|
63 |
+
|
64 |
+
# Unit test / coverage reports
|
65 |
+
typings
|
66 |
+
htmlcov/
|
67 |
+
.tox/
|
68 |
+
.nox/
|
69 |
+
.coverage
|
70 |
+
.coverage.*
|
71 |
+
.cache
|
72 |
+
nosetests.xml
|
73 |
+
coverage.xml
|
74 |
+
*.cover
|
75 |
+
.hypothesis/
|
76 |
+
.pytest_cache/
|
77 |
+
|
78 |
+
# Translations
|
79 |
+
*.mo
|
80 |
+
*.pot
|
81 |
+
|
82 |
+
# Django stuff:
|
83 |
+
*.log
|
84 |
+
local_settings.py
|
85 |
+
db.sqlite3
|
86 |
+
|
87 |
+
# Flask stuff:
|
88 |
+
instance/
|
89 |
+
.webassets-cache
|
90 |
+
|
91 |
+
# Scrapy stuff:
|
92 |
+
.scrapy
|
93 |
+
|
94 |
+
# Sphinx documentation
|
95 |
+
docs/_build/
|
96 |
+
|
97 |
+
# PyBuilder
|
98 |
+
target/
|
99 |
+
|
100 |
+
# Jupyter Notebook
|
101 |
+
.ipynb_checkpoints
|
102 |
+
|
103 |
+
# IPython
|
104 |
+
profile_default/
|
105 |
+
ipython_config.py
|
106 |
+
|
107 |
+
# pyenv
|
108 |
+
.python-version
|
109 |
+
|
110 |
+
# celery beat schedule file
|
111 |
+
celerybeat-schedule
|
112 |
+
|
113 |
+
# SageMath parsed files
|
114 |
+
*.sage.py
|
115 |
+
|
116 |
+
# Environments
|
117 |
+
.env
|
118 |
+
.venv
|
119 |
+
env/
|
120 |
+
venv/
|
121 |
+
ENV/
|
122 |
+
env.bak/
|
123 |
+
venv.bak/
|
124 |
+
|
125 |
+
# Spyder project settings
|
126 |
+
.spyderproject
|
127 |
+
.spyproject
|
128 |
+
|
129 |
+
# Rope project settings
|
130 |
+
.ropeproject
|
131 |
+
|
132 |
+
# mkdocs documentation
|
133 |
+
/site
|
134 |
+
|
135 |
+
# mypy
|
136 |
+
.mypy_cache/
|
137 |
+
.dmypy.json
|
138 |
+
dmypy.json
|
139 |
+
|
140 |
+
# Pyre type checker
|
141 |
+
.pyre/
|
142 |
+
|
143 |
+
# IDE
|
144 |
+
.idea
|
app.py
CHANGED
@@ -67,6 +67,7 @@ inputs = [
|
|
67 |
]
|
68 |
examples = [
|
69 |
["samples/p232_013_clean.wav", "samples/noise_freesound_2530.wav", 10],
|
|
|
70 |
]
|
71 |
outputs = [
|
72 |
gradio.outputs.Audio(label="Clean"),
|
|
|
67 |
]
|
68 |
examples = [
|
69 |
["samples/p232_013_clean.wav", "samples/noise_freesound_2530.wav", 10],
|
70 |
+
["samples/p232_019_clean.wav", "samples/DLIVING_combined.wav", 10],
|
71 |
]
|
72 |
outputs = [
|
73 |
gradio.outputs.Audio(label="Clean"),
|
noisy.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e3b658209be05042ce017aa2b3db444e56e84c3cc6f58535599ff8887c9ee5f7
|
3 |
-
size 378612
|
|
|
|
|
|
|
|
enhanced.wav → samples/DLIVING_combined.wav
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:412bb9f5079640306ed4ec16f6d9652df1f0062584754f41d195ab1eb254d7a4
|
3 |
+
size 28800428
|
clean.wav → samples/p232_019_clean.wav
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2268caefff20ce9658a154c1481cc37ebf89347b3ef848b8a07115be3ec9c069
|
3 |
+
size 646658
|