glide-the commited on
Commit
745fe74
1 Parent(s): 5baa66d

Add large files to Git LFS

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. Dockerfile +6 -0
  2. __pycache__/util.cpython-310.pyc +0 -0
  3. rvc/__pycache__/__init__.cpython-310.pyc +0 -0
  4. rvc/__pycache__/vc_infer_pipeline.cpython-310.pyc +0 -0
  5. rvc/infer_pack/__pycache__/__init__.cpython-310.pyc +0 -0
  6. rvc/infer_pack/__pycache__/attentions.cpython-310.pyc +0 -0
  7. rvc/infer_pack/__pycache__/commons.cpython-310.pyc +0 -0
  8. rvc/infer_pack/__pycache__/models.cpython-310.pyc +0 -0
  9. rvc/infer_pack/__pycache__/transforms.cpython-310.pyc +0 -0
  10. rvc/infer_pack/modules/__pycache__/__init__.cpython-310.pyc +0 -0
  11. speakers/__pycache__/__init__.cpython-310.pyc +0 -0
  12. speakers/__pycache__/__main__.cpython-310.pyc +0 -0
  13. speakers/__pycache__/speakers.cpython-310.pyc +0 -0
  14. speakers/common/__pycache__/__init__.cpython-310.pyc +0 -0
  15. speakers/common/__pycache__/general.cpython-310.pyc +0 -0
  16. speakers/common/__pycache__/log.cpython-310.pyc +0 -0
  17. speakers/common/__pycache__/registry.cpython-310.pyc +0 -0
  18. speakers/common/__pycache__/utils.cpython-310.pyc +0 -0
  19. speakers/load/__pycache__/__init__.cpython-310.pyc +0 -0
  20. speakers/load/__pycache__/serializable.cpython-310.pyc +0 -0
  21. speakers/processors/__pycache__/__init__.cpython-310.pyc +0 -0
  22. speakers/processors/__pycache__/bark_to_voice.cpython-310.pyc +0 -0
  23. speakers/processors/__pycache__/base_processor.cpython-310.pyc +0 -0
  24. speakers/processors/__pycache__/rvc_speakers_processor.cpython-310.pyc +0 -0
  25. speakers/processors/__pycache__/vits_to_voice.cpython-310.pyc +0 -0
  26. speakers/server/__pycache__/__init__.cpython-310.pyc +0 -0
  27. speakers/server/__pycache__/utils.cpython-310.pyc +0 -0
  28. speakers/server/bootstrap/__pycache__/__init__.cpython-310.pyc +0 -0
  29. speakers/server/bootstrap/__pycache__/base.cpython-310.pyc +0 -0
  30. speakers/server/bootstrap/__pycache__/bootstrap_register.cpython-310.pyc +0 -0
  31. speakers/server/bootstrap/__pycache__/runner_bootstrap.cpython-310.pyc +0 -0
  32. speakers/server/model/__pycache__/flow_data.cpython-310.pyc +0 -0
  33. speakers/server/model/__pycache__/result.cpython-310.pyc +0 -0
  34. speakers/server/servlet/__pycache__/document.cpython-310.pyc +0 -0
  35. speakers/server/servlet/__pycache__/runner.cpython-310.pyc +0 -0
  36. speakers/tasks/__pycache__/__init__.cpython-310.pyc +0 -0
  37. speakers/tasks/__pycache__/bark_voice_task.cpython-310.pyc +0 -0
  38. speakers/tasks/__pycache__/base_task.cpython-310.pyc +0 -0
  39. speakers/tasks/__pycache__/vits_voice_task.cpython-310.pyc +0 -0
  40. vits/__pycache__/__init__.cpython-310.pyc +0 -0
  41. vits/__pycache__/models.cpython-310.pyc +0 -0
  42. vits/__pycache__/utils.cpython-310.pyc +0 -0
  43. vits/modules/__pycache__/__init__.cpython-310.pyc +0 -0
  44. vits/modules/attentions/__pycache__/__init__.cpython-310.pyc +0 -0
  45. vits/modules/attentions/__pycache__/attentions.cpython-310.pyc +0 -0
  46. vits/modules/commons/__pycache__/__init__.cpython-310.pyc +0 -0
  47. vits/modules/commons/__pycache__/commons.cpython-310.pyc +0 -0
  48. vits/modules/layer/__pycache__/__init__.cpython-310.pyc +0 -0
  49. vits/modules/layer/__pycache__/modules.cpython-310.pyc +0 -0
  50. 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