Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +31 -0
Dockerfile
CHANGED
@@ -39,6 +39,37 @@ RUN git clone https://github.com/wavlab-speech/versa.git && \
|
|
39 |
cd versa && \
|
40 |
pip install -e .
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
# Create directories with permissive permissions
|
43 |
RUN mkdir -p $HOME/app/.cache \
|
44 |
&& mkdir -p $HOME/app/.cache/huggingface \
|
|
|
39 |
cd versa && \
|
40 |
pip install -e .
|
41 |
|
42 |
+
# Install External Packages from VERSA
|
43 |
+
RUN cd versa/tools && \
|
44 |
+
bash install_asvspoof.sh
|
45 |
+
|
46 |
+
RUN cd versa/tools && \
|
47 |
+
bash install_audio-aesthetics.sh
|
48 |
+
|
49 |
+
RUN cd versa/tools && \
|
50 |
+
bash install_emo2vec.sh
|
51 |
+
|
52 |
+
RUN cd versa/tools && \
|
53 |
+
bash install_nomad.sh
|
54 |
+
|
55 |
+
RUN cd versa/tools && \
|
56 |
+
bash install_noresqa.sh
|
57 |
+
|
58 |
+
RUN cd versa/tools && \
|
59 |
+
bash install_scoreq.sh
|
60 |
+
|
61 |
+
RUN cd versa/tools && \
|
62 |
+
bash install_pysepm.sh
|
63 |
+
|
64 |
+
RUN cd versa/tools && \
|
65 |
+
bash install_srmr.sh
|
66 |
+
|
67 |
+
RUN cd versa/tools && \
|
68 |
+
bash setup_nisqa.sh
|
69 |
+
|
70 |
+
RUN cd versa/tools && \
|
71 |
+
bash install_warpq.sh
|
72 |
+
|
73 |
# Create directories with permissive permissions
|
74 |
RUN mkdir -p $HOME/app/.cache \
|
75 |
&& mkdir -p $HOME/app/.cache/huggingface \
|