chenjianfei
commited on
Commit
·
ca48055
1
Parent(s):
ca98498
debug
Browse files- .gitignore +36 -0
- requirements.txt +17 -17
.gitignore
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# general things to ignore
|
2 |
+
.DS_Store
|
3 |
+
build/
|
4 |
+
build_contrib/
|
5 |
+
dist/
|
6 |
+
.cache/
|
7 |
+
*.egg-info/
|
8 |
+
*.egg
|
9 |
+
*.py[cod]
|
10 |
+
__pycache__/
|
11 |
+
*.so
|
12 |
+
*~
|
13 |
+
|
14 |
+
# IDE
|
15 |
+
.vscode/
|
16 |
+
|
17 |
+
# misc
|
18 |
+
checkpoints/
|
19 |
+
test_waves/
|
20 |
+
reconstructed/
|
21 |
+
.python-version
|
22 |
+
ruff.log
|
23 |
+
/configs/inuse/
|
24 |
+
*.wav
|
25 |
+
*.ogg
|
26 |
+
*.mp3
|
27 |
+
demo_dir/*
|
28 |
+
*.pt
|
29 |
+
*.json
|
30 |
+
*.txt
|
31 |
+
*.ipynb
|
32 |
+
asset/
|
33 |
+
*.csv
|
34 |
+
*.xlsx
|
35 |
+
*.jpg
|
36 |
+
*.log
|
requirements.txt
CHANGED
@@ -316,23 +316,23 @@ sse-starlette==1.8.2
|
|
316 |
st-annotated-text==4.0.2
|
317 |
stack_data
|
318 |
starlette==0.46.1
|
319 |
-
streamlit
|
320 |
-
streamlit-aggrid
|
321 |
-
streamlit-antd-components
|
322 |
-
streamlit-camera-input-live
|
323 |
-
streamlit-card
|
324 |
-
streamlit-chatbox
|
325 |
-
streamlit-embedcode
|
326 |
-
streamlit-extras
|
327 |
-
streamlit-faker
|
328 |
-
streamlit-feedback
|
329 |
-
streamlit-image-coordinates
|
330 |
-
streamlit-keyup
|
331 |
-
streamlit-option-menu
|
332 |
-
streamlit-paste-button
|
333 |
-
streamlit-toggle-switch
|
334 |
-
streamlit-vertical-slider
|
335 |
-
streamlit_modal
|
336 |
strsimpy==0.2.1
|
337 |
sympy
|
338 |
tabulate==0.9.0
|
|
|
316 |
st-annotated-text==4.0.2
|
317 |
stack_data
|
318 |
starlette==0.46.1
|
319 |
+
streamlit
|
320 |
+
streamlit-aggrid
|
321 |
+
streamlit-antd-components
|
322 |
+
streamlit-camera-input-live
|
323 |
+
streamlit-card
|
324 |
+
streamlit-chatbox
|
325 |
+
streamlit-embedcode
|
326 |
+
streamlit-extras
|
327 |
+
streamlit-faker
|
328 |
+
streamlit-feedback
|
329 |
+
streamlit-image-coordinates
|
330 |
+
streamlit-keyup
|
331 |
+
streamlit-option-menu
|
332 |
+
streamlit-paste-button
|
333 |
+
streamlit-toggle-switch
|
334 |
+
streamlit-vertical-slider
|
335 |
+
streamlit_modal
|
336 |
strsimpy==0.2.1
|
337 |
sympy
|
338 |
tabulate==0.9.0
|