Roboco model please.
#3
by
tsai1999
- opened
- README.md +2 -2
- app.py +2 -2
- requirements.txt +1 -2
README.md
CHANGED
@@ -4,10 +4,10 @@ emoji: ▶️🐻💿
|
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
license: openrail
|
11 |
---
|
12 |
|
13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 3.35.2
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
license: openrail
|
11 |
---
|
12 |
|
13 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -502,6 +502,6 @@ if __name__ == '__main__':
|
|
502 |
]
|
503 |
)
|
504 |
if limitation is True:
|
505 |
-
app.queue(max_size=20, api_open=config.api).launch(share=config.colab
|
506 |
else:
|
507 |
-
app.queue(max_size=20, api_open=config.api).launch(share=True
|
|
|
502 |
]
|
503 |
)
|
504 |
if limitation is True:
|
505 |
+
app.queue(concurrency_count=1, max_size=20, api_open=config.api).launch(share=config.colab)
|
506 |
else:
|
507 |
+
app.queue(concurrency_count=1, max_size=20, api_open=config.api).launch(share=True)
|
requirements.txt
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
wheel
|
2 |
setuptools
|
3 |
ffmpeg
|
4 |
-
kaleido
|
5 |
numba==0.56.4
|
6 |
numpy==1.23.5
|
7 |
scipy==1.9.3
|
@@ -19,4 +18,4 @@ torchcrepe
|
|
19 |
onnxruntime
|
20 |
demucs
|
21 |
edge-tts
|
22 |
-
yt_dlp
|
|
|
1 |
wheel
|
2 |
setuptools
|
3 |
ffmpeg
|
|
|
4 |
numba==0.56.4
|
5 |
numpy==1.23.5
|
6 |
scipy==1.9.3
|
|
|
18 |
onnxruntime
|
19 |
demucs
|
20 |
edge-tts
|
21 |
+
yt_dlp
|