Spaces:
Sleeping
Sleeping
glide-the
commited on
Commit
·
745fe74
1
Parent(s):
5baa66d
Add large files to Git LFS
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Dockerfile +6 -0
- __pycache__/util.cpython-310.pyc +0 -0
- rvc/__pycache__/__init__.cpython-310.pyc +0 -0
- rvc/__pycache__/vc_infer_pipeline.cpython-310.pyc +0 -0
- rvc/infer_pack/__pycache__/__init__.cpython-310.pyc +0 -0
- rvc/infer_pack/__pycache__/attentions.cpython-310.pyc +0 -0
- rvc/infer_pack/__pycache__/commons.cpython-310.pyc +0 -0
- rvc/infer_pack/__pycache__/models.cpython-310.pyc +0 -0
- rvc/infer_pack/__pycache__/transforms.cpython-310.pyc +0 -0
- rvc/infer_pack/modules/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/__pycache__/__main__.cpython-310.pyc +0 -0
- speakers/__pycache__/speakers.cpython-310.pyc +0 -0
- speakers/common/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/common/__pycache__/general.cpython-310.pyc +0 -0
- speakers/common/__pycache__/log.cpython-310.pyc +0 -0
- speakers/common/__pycache__/registry.cpython-310.pyc +0 -0
- speakers/common/__pycache__/utils.cpython-310.pyc +0 -0
- speakers/load/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/load/__pycache__/serializable.cpython-310.pyc +0 -0
- speakers/processors/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/processors/__pycache__/bark_to_voice.cpython-310.pyc +0 -0
- speakers/processors/__pycache__/base_processor.cpython-310.pyc +0 -0
- speakers/processors/__pycache__/rvc_speakers_processor.cpython-310.pyc +0 -0
- speakers/processors/__pycache__/vits_to_voice.cpython-310.pyc +0 -0
- speakers/server/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/server/__pycache__/utils.cpython-310.pyc +0 -0
- speakers/server/bootstrap/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/server/bootstrap/__pycache__/base.cpython-310.pyc +0 -0
- speakers/server/bootstrap/__pycache__/bootstrap_register.cpython-310.pyc +0 -0
- speakers/server/bootstrap/__pycache__/runner_bootstrap.cpython-310.pyc +0 -0
- speakers/server/model/__pycache__/flow_data.cpython-310.pyc +0 -0
- speakers/server/model/__pycache__/result.cpython-310.pyc +0 -0
- speakers/server/servlet/__pycache__/document.cpython-310.pyc +0 -0
- speakers/server/servlet/__pycache__/runner.cpython-310.pyc +0 -0
- speakers/tasks/__pycache__/__init__.cpython-310.pyc +0 -0
- speakers/tasks/__pycache__/bark_voice_task.cpython-310.pyc +0 -0
- speakers/tasks/__pycache__/base_task.cpython-310.pyc +0 -0
- speakers/tasks/__pycache__/vits_voice_task.cpython-310.pyc +0 -0
- vits/__pycache__/__init__.cpython-310.pyc +0 -0
- vits/__pycache__/models.cpython-310.pyc +0 -0
- vits/__pycache__/utils.cpython-310.pyc +0 -0
- vits/modules/__pycache__/__init__.cpython-310.pyc +0 -0
- vits/modules/attentions/__pycache__/__init__.cpython-310.pyc +0 -0
- vits/modules/attentions/__pycache__/attentions.cpython-310.pyc +0 -0
- vits/modules/commons/__pycache__/__init__.cpython-310.pyc +0 -0
- vits/modules/commons/__pycache__/commons.cpython-310.pyc +0 -0
- vits/modules/layer/__pycache__/__init__.cpython-310.pyc +0 -0
- vits/modules/layer/__pycache__/modules.cpython-310.pyc +0 -0
- vits/modules/transforms/__pycache__/__init__.cpython-310.pyc +0 -0
Dockerfile
CHANGED
@@ -2,8 +2,14 @@ FROM python:3.10
|
|
2 |
|
3 |
RUN apt update && apt install -y cmake gcc portaudio19-dev
|
4 |
|
|
|
|
|
5 |
WORKDIR /code
|
|
|
6 |
ENV NUMBA_CACHE_DIR=/tmp/
|
|
|
|
|
|
|
7 |
COPY ./requirements.txt /code/requirements.txt
|
8 |
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
2 |
|
3 |
RUN apt update && apt install -y cmake gcc portaudio19-dev
|
4 |
|
5 |
+
|
6 |
+
|
7 |
WORKDIR /code
|
8 |
+
|
9 |
ENV NUMBA_CACHE_DIR=/tmp/
|
10 |
+
RUN mkdir /tmp/cache
|
11 |
+
ENV TRANSFORMERS_CACHE=/tmp/cache/
|
12 |
+
|
13 |
COPY ./requirements.txt /code/requirements.txt
|
14 |
|
15 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
__pycache__/util.cpython-310.pyc
ADDED
Binary file (2.3 kB). View file
|
|
rvc/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/rvc/__pycache__/__init__.cpython-310.pyc and b/rvc/__pycache__/__init__.cpython-310.pyc differ
|
|
rvc/__pycache__/vc_infer_pipeline.cpython-310.pyc
CHANGED
Binary files a/rvc/__pycache__/vc_infer_pipeline.cpython-310.pyc and b/rvc/__pycache__/vc_infer_pipeline.cpython-310.pyc differ
|
|
rvc/infer_pack/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/__pycache__/__init__.cpython-310.pyc and b/rvc/infer_pack/__pycache__/__init__.cpython-310.pyc differ
|
|
rvc/infer_pack/__pycache__/attentions.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/__pycache__/attentions.cpython-310.pyc and b/rvc/infer_pack/__pycache__/attentions.cpython-310.pyc differ
|
|
rvc/infer_pack/__pycache__/commons.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/__pycache__/commons.cpython-310.pyc and b/rvc/infer_pack/__pycache__/commons.cpython-310.pyc differ
|
|
rvc/infer_pack/__pycache__/models.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/__pycache__/models.cpython-310.pyc and b/rvc/infer_pack/__pycache__/models.cpython-310.pyc differ
|
|
rvc/infer_pack/__pycache__/transforms.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/__pycache__/transforms.cpython-310.pyc and b/rvc/infer_pack/__pycache__/transforms.cpython-310.pyc differ
|
|
rvc/infer_pack/modules/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/rvc/infer_pack/modules/__pycache__/__init__.cpython-310.pyc and b/rvc/infer_pack/modules/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/__pycache__/__init__.cpython-310.pyc and b/speakers/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/__pycache__/__main__.cpython-310.pyc
CHANGED
Binary files a/speakers/__pycache__/__main__.cpython-310.pyc and b/speakers/__pycache__/__main__.cpython-310.pyc differ
|
|
speakers/__pycache__/speakers.cpython-310.pyc
CHANGED
Binary files a/speakers/__pycache__/speakers.cpython-310.pyc and b/speakers/__pycache__/speakers.cpython-310.pyc differ
|
|
speakers/common/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/common/__pycache__/__init__.cpython-310.pyc and b/speakers/common/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/common/__pycache__/general.cpython-310.pyc
CHANGED
Binary files a/speakers/common/__pycache__/general.cpython-310.pyc and b/speakers/common/__pycache__/general.cpython-310.pyc differ
|
|
speakers/common/__pycache__/log.cpython-310.pyc
CHANGED
Binary files a/speakers/common/__pycache__/log.cpython-310.pyc and b/speakers/common/__pycache__/log.cpython-310.pyc differ
|
|
speakers/common/__pycache__/registry.cpython-310.pyc
CHANGED
Binary files a/speakers/common/__pycache__/registry.cpython-310.pyc and b/speakers/common/__pycache__/registry.cpython-310.pyc differ
|
|
speakers/common/__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/speakers/common/__pycache__/utils.cpython-310.pyc and b/speakers/common/__pycache__/utils.cpython-310.pyc differ
|
|
speakers/load/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/load/__pycache__/__init__.cpython-310.pyc and b/speakers/load/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/load/__pycache__/serializable.cpython-310.pyc
CHANGED
Binary files a/speakers/load/__pycache__/serializable.cpython-310.pyc and b/speakers/load/__pycache__/serializable.cpython-310.pyc differ
|
|
speakers/processors/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/processors/__pycache__/__init__.cpython-310.pyc and b/speakers/processors/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/processors/__pycache__/bark_to_voice.cpython-310.pyc
CHANGED
Binary files a/speakers/processors/__pycache__/bark_to_voice.cpython-310.pyc and b/speakers/processors/__pycache__/bark_to_voice.cpython-310.pyc differ
|
|
speakers/processors/__pycache__/base_processor.cpython-310.pyc
CHANGED
Binary files a/speakers/processors/__pycache__/base_processor.cpython-310.pyc and b/speakers/processors/__pycache__/base_processor.cpython-310.pyc differ
|
|
speakers/processors/__pycache__/rvc_speakers_processor.cpython-310.pyc
CHANGED
Binary files a/speakers/processors/__pycache__/rvc_speakers_processor.cpython-310.pyc and b/speakers/processors/__pycache__/rvc_speakers_processor.cpython-310.pyc differ
|
|
speakers/processors/__pycache__/vits_to_voice.cpython-310.pyc
CHANGED
Binary files a/speakers/processors/__pycache__/vits_to_voice.cpython-310.pyc and b/speakers/processors/__pycache__/vits_to_voice.cpython-310.pyc differ
|
|
speakers/server/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/server/__pycache__/__init__.cpython-310.pyc and b/speakers/server/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/server/__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/speakers/server/__pycache__/utils.cpython-310.pyc and b/speakers/server/__pycache__/utils.cpython-310.pyc differ
|
|
speakers/server/bootstrap/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/server/bootstrap/__pycache__/__init__.cpython-310.pyc and b/speakers/server/bootstrap/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/server/bootstrap/__pycache__/base.cpython-310.pyc
CHANGED
Binary files a/speakers/server/bootstrap/__pycache__/base.cpython-310.pyc and b/speakers/server/bootstrap/__pycache__/base.cpython-310.pyc differ
|
|
speakers/server/bootstrap/__pycache__/bootstrap_register.cpython-310.pyc
CHANGED
Binary files a/speakers/server/bootstrap/__pycache__/bootstrap_register.cpython-310.pyc and b/speakers/server/bootstrap/__pycache__/bootstrap_register.cpython-310.pyc differ
|
|
speakers/server/bootstrap/__pycache__/runner_bootstrap.cpython-310.pyc
CHANGED
Binary files a/speakers/server/bootstrap/__pycache__/runner_bootstrap.cpython-310.pyc and b/speakers/server/bootstrap/__pycache__/runner_bootstrap.cpython-310.pyc differ
|
|
speakers/server/model/__pycache__/flow_data.cpython-310.pyc
CHANGED
Binary files a/speakers/server/model/__pycache__/flow_data.cpython-310.pyc and b/speakers/server/model/__pycache__/flow_data.cpython-310.pyc differ
|
|
speakers/server/model/__pycache__/result.cpython-310.pyc
CHANGED
Binary files a/speakers/server/model/__pycache__/result.cpython-310.pyc and b/speakers/server/model/__pycache__/result.cpython-310.pyc differ
|
|
speakers/server/servlet/__pycache__/document.cpython-310.pyc
CHANGED
Binary files a/speakers/server/servlet/__pycache__/document.cpython-310.pyc and b/speakers/server/servlet/__pycache__/document.cpython-310.pyc differ
|
|
speakers/server/servlet/__pycache__/runner.cpython-310.pyc
CHANGED
Binary files a/speakers/server/servlet/__pycache__/runner.cpython-310.pyc and b/speakers/server/servlet/__pycache__/runner.cpython-310.pyc differ
|
|
speakers/tasks/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/speakers/tasks/__pycache__/__init__.cpython-310.pyc and b/speakers/tasks/__pycache__/__init__.cpython-310.pyc differ
|
|
speakers/tasks/__pycache__/bark_voice_task.cpython-310.pyc
CHANGED
Binary files a/speakers/tasks/__pycache__/bark_voice_task.cpython-310.pyc and b/speakers/tasks/__pycache__/bark_voice_task.cpython-310.pyc differ
|
|
speakers/tasks/__pycache__/base_task.cpython-310.pyc
CHANGED
Binary files a/speakers/tasks/__pycache__/base_task.cpython-310.pyc and b/speakers/tasks/__pycache__/base_task.cpython-310.pyc differ
|
|
speakers/tasks/__pycache__/vits_voice_task.cpython-310.pyc
CHANGED
Binary files a/speakers/tasks/__pycache__/vits_voice_task.cpython-310.pyc and b/speakers/tasks/__pycache__/vits_voice_task.cpython-310.pyc differ
|
|
vits/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/__pycache__/__init__.cpython-310.pyc and b/vits/__pycache__/__init__.cpython-310.pyc differ
|
|
vits/__pycache__/models.cpython-310.pyc
CHANGED
Binary files a/vits/__pycache__/models.cpython-310.pyc and b/vits/__pycache__/models.cpython-310.pyc differ
|
|
vits/__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/vits/__pycache__/utils.cpython-310.pyc and b/vits/__pycache__/utils.cpython-310.pyc differ
|
|
vits/modules/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/modules/__pycache__/__init__.cpython-310.pyc and b/vits/modules/__pycache__/__init__.cpython-310.pyc differ
|
|
vits/modules/attentions/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/modules/attentions/__pycache__/__init__.cpython-310.pyc and b/vits/modules/attentions/__pycache__/__init__.cpython-310.pyc differ
|
|
vits/modules/attentions/__pycache__/attentions.cpython-310.pyc
CHANGED
Binary files a/vits/modules/attentions/__pycache__/attentions.cpython-310.pyc and b/vits/modules/attentions/__pycache__/attentions.cpython-310.pyc differ
|
|
vits/modules/commons/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/modules/commons/__pycache__/__init__.cpython-310.pyc and b/vits/modules/commons/__pycache__/__init__.cpython-310.pyc differ
|
|
vits/modules/commons/__pycache__/commons.cpython-310.pyc
CHANGED
Binary files a/vits/modules/commons/__pycache__/commons.cpython-310.pyc and b/vits/modules/commons/__pycache__/commons.cpython-310.pyc differ
|
|
vits/modules/layer/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/modules/layer/__pycache__/__init__.cpython-310.pyc and b/vits/modules/layer/__pycache__/__init__.cpython-310.pyc differ
|
|
vits/modules/layer/__pycache__/modules.cpython-310.pyc
CHANGED
Binary files a/vits/modules/layer/__pycache__/modules.cpython-310.pyc and b/vits/modules/layer/__pycache__/modules.cpython-310.pyc differ
|
|
vits/modules/transforms/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/vits/modules/transforms/__pycache__/__init__.cpython-310.pyc and b/vits/modules/transforms/__pycache__/__init__.cpython-310.pyc differ
|
|