demo fixed docker file
Browse files- Dockerfile +39 -15
- Dockerfile-back +37 -0
- his.txt +0 -0
- requirements-back.txt +170 -0
- requirements.txt +49 -170
- sp.yml +5 -5
Dockerfile
CHANGED
@@ -1,21 +1,44 @@
|
|
1 |
-
|
2 |
-
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
-
FROM continuumio/miniconda3
|
5 |
-
|
6 |
-
RUN apt-get update
|
7 |
-
RUN apt-get install sox -y
|
8 |
|
9 |
WORKDIR /code
|
10 |
|
11 |
-
COPY ./
|
12 |
-
|
13 |
-
RUN
|
14 |
-
RUN
|
15 |
-
# RUN pip install --no-cache-dir
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
# Set up a new user named "user" with user ID 1000
|
19 |
RUN useradd -m -u 1000 user
|
20 |
|
21 |
# Switch to the "user" user
|
@@ -27,9 +50,10 @@ ENV HOME=/home/user \
|
|
27 |
|
28 |
# Set the working directory to the user's home directory
|
29 |
WORKDIR $HOME/app
|
30 |
-
|
|
|
|
|
31 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
32 |
COPY --chown=user . $HOME/app
|
33 |
-
ENV TZ=India/Kolkata
|
34 |
|
35 |
CMD ["python3", "app.py"]
|
|
|
1 |
+
FROM python:3.8.18
|
|
|
2 |
|
|
|
|
|
|
|
|
|
3 |
|
4 |
WORKDIR /code
|
5 |
|
6 |
+
# COPY ./requirements.txt /code/requirements.txt
|
7 |
+
|
8 |
+
# RUN pip install --upgrade pip
|
9 |
+
# RUN pip install --no-cache-dir fairseq
|
10 |
+
# RUN pip install --require-hashes --no-cache-dir -r /code/requirements.txt
|
11 |
+
# RUN pip install --no-cache-dir gradio
|
12 |
+
# RUN apt-get update
|
13 |
+
# RUN apt-get install sox wget -y
|
14 |
+
|
15 |
+
# RUN pip install --no-cache-dir sox tensorboard
|
16 |
+
# RUN python3 -m pip install setuptools==59.5.0
|
17 |
+
# RUN pip3 install speechbrain resampy sed_eval more-itertools
|
18 |
+
# RUN pip install --no-cache-dir "s3prl[all]"
|
19 |
+
# RUN pip install hydra hydra-core --no-deps --no-cache-dir
|
20 |
+
# RUN pip install ffprobe
|
21 |
+
# RUN git clone https://github.com/s3prl/s3prl
|
22 |
+
# WORKDIR /code/s3prl
|
23 |
+
# RUN python3 setup.py install
|
24 |
+
# # Set up a new user named "user" with user ID 1000
|
25 |
+
# python version 3.8
|
26 |
+
|
27 |
+
# torch wheel file install kardo
|
28 |
+
RUN wget https://download.pytorch.org/whl/cu111/torch-1.9.0%2Bcu111-cp38-cp38-linux_x86_64.whl
|
29 |
+
RUN pip install torch-1.9.0+cu111-cp38-cp38-linux_x86_64.whl
|
30 |
+
|
31 |
+
RUN pip install PyYAML==5.4.1
|
32 |
+
RUN pip install sklearn==0.0
|
33 |
+
RUN pip install fire==0.4.0
|
34 |
+
RUN pip install scipy==1.7.1
|
35 |
+
RUN pip install fairseq
|
36 |
+
RUN pip install s3prl
|
37 |
+
RUN pip install omegaconf==2.0.6
|
38 |
+
RUN pip install sentencepiece==0.1.96
|
39 |
+
RUN pip install gradio
|
40 |
+
RUN pip install soundfile
|
41 |
|
|
|
|
|
42 |
RUN useradd -m -u 1000 user
|
43 |
|
44 |
# Switch to the "user" user
|
|
|
50 |
|
51 |
# Set the working directory to the user's home directory
|
52 |
WORKDIR $HOME/app
|
53 |
+
# RUN mkdir -p /home/user/.cache/torch/hub
|
54 |
+
# RUN wget https://github.com/s3prl/s3prl/archive/master.zip -O /home/user/.cache/torch/hub/master.zip
|
55 |
+
# RUN unzip /home/user/.cache/torch/hub/master.zip -d /home/user/.cache/torch/hub/
|
56 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
57 |
COPY --chown=user . $HOME/app
|
|
|
58 |
|
59 |
CMD ["python3", "app.py"]
|
Dockerfile-back
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
+
# you will also find guides on how best to write your Dockerfile
|
3 |
+
|
4 |
+
FROM continuumio/miniconda3
|
5 |
+
|
6 |
+
RUN apt-get update
|
7 |
+
RUN apt-get install sox -y
|
8 |
+
|
9 |
+
WORKDIR /code
|
10 |
+
|
11 |
+
COPY ./sp.yml /code/sp.yml
|
12 |
+
|
13 |
+
RUN conda update -n base -c defaults conda
|
14 |
+
RUN python3 -m pip install python-dev-tools --user --upgrade
|
15 |
+
RUN conda env create -f sp.yml
|
16 |
+
RUN conda activate sp
|
17 |
+
# RUN pip install --no-cache-dir torch==1.11.0+cu113 torchvision==0.12.0+cu113 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu113
|
18 |
+
|
19 |
+
|
20 |
+
# Set up a new user named "user" with user ID 1000
|
21 |
+
RUN useradd -m -u 1000 user
|
22 |
+
|
23 |
+
# Switch to the "user" user
|
24 |
+
USER user
|
25 |
+
|
26 |
+
# Set home to the user's home directory
|
27 |
+
ENV HOME=/home/user \
|
28 |
+
PATH=/home/user/.local/bin:$PATH
|
29 |
+
|
30 |
+
# Set the working directory to the user's home directory
|
31 |
+
WORKDIR $HOME/app
|
32 |
+
|
33 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
34 |
+
COPY --chown=user . $HOME/app
|
35 |
+
ENV TZ=India/Kolkata
|
36 |
+
|
37 |
+
CMD ["python3", "app.py"]
|
his.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements-back.txt
ADDED
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==2.1.0
|
2 |
+
accelerate==0.20.3
|
3 |
+
aiofiles==23.2.1
|
4 |
+
aiohttp==3.9.3
|
5 |
+
aiosignal==1.3.1
|
6 |
+
altair==5.2.0
|
7 |
+
annotated-types==0.6.0
|
8 |
+
antlr4-python3-runtime==4.8
|
9 |
+
anyio==4.3.0
|
10 |
+
appdirs==1.4.4
|
11 |
+
asteroid==0.4.4
|
12 |
+
asteroid-filterbanks==0.4.0
|
13 |
+
async-timeout==4.0.3
|
14 |
+
attrs==23.2.0
|
15 |
+
audioread==3.0.1
|
16 |
+
beautifulsoup4==4.12.3
|
17 |
+
bitarray==2.9.2
|
18 |
+
cached-property==1.5.2
|
19 |
+
cachetools==5.3.3
|
20 |
+
catalyst==22.4
|
21 |
+
certifi==2024.2.2
|
22 |
+
cffi==1.16.0
|
23 |
+
charset-normalizer==3.3.2
|
24 |
+
click==8.1.7
|
25 |
+
colorama==0.4.6
|
26 |
+
contourpy==1.1.1
|
27 |
+
cycler==0.12.1
|
28 |
+
Cython==3.0.9
|
29 |
+
dcase-util==0.2.20
|
30 |
+
docker-pycreds==0.4.0
|
31 |
+
dtw-python==1.1.6
|
32 |
+
easydict==1.13
|
33 |
+
editdistance==0.8.1
|
34 |
+
einops==0.7.0
|
35 |
+
exceptiongroup==1.2.0
|
36 |
+
fairseq==0.12.2
|
37 |
+
fastapi==0.110.0
|
38 |
+
ffmpy==0.3.2
|
39 |
+
ffprobe==0.5
|
40 |
+
filelock==3.13.1
|
41 |
+
fire==0.4.0
|
42 |
+
fonttools==4.49.0
|
43 |
+
frozenlist==1.4.1
|
44 |
+
fsspec==2024.2.0
|
45 |
+
future==1.0.0
|
46 |
+
gdown==5.1.0
|
47 |
+
gitdb==4.0.11
|
48 |
+
GitPython==3.1.42
|
49 |
+
google-auth==2.28.2
|
50 |
+
google-auth-oauthlib==1.0.0
|
51 |
+
gradio==4.24.0
|
52 |
+
gradio_client==0.14.0
|
53 |
+
grpcio==1.62.1
|
54 |
+
h11==0.14.0
|
55 |
+
h5py==3.10.0
|
56 |
+
httpcore==1.0.5
|
57 |
+
httpx==0.27.0
|
58 |
+
huggingface-hub==0.21.4
|
59 |
+
Hydra==2.5
|
60 |
+
hydra-core==1.0.7
|
61 |
+
hydra-slayer==0.5.0
|
62 |
+
HyperPyYAML==1.2.2
|
63 |
+
idna==3.6
|
64 |
+
importlib_resources==6.3.0
|
65 |
+
intervaltree==3.1.0
|
66 |
+
ipywidgets==8.1.2
|
67 |
+
Jinja2==3.1.3
|
68 |
+
joblib==1.3.2
|
69 |
+
jsonschema==4.21.1
|
70 |
+
jsonschema-specifications==2023.12.1
|
71 |
+
julius==0.2.7
|
72 |
+
jupyterlab_widgets==3.0.10
|
73 |
+
kaldi-io==0.9.8
|
74 |
+
kiwisolver==1.4.5
|
75 |
+
lazy_loader==0.3
|
76 |
+
librosa==0.10.1
|
77 |
+
lightning-utilities==0.10.1
|
78 |
+
llvmlite==0.41.1
|
79 |
+
lxml==5.1.0
|
80 |
+
Markdown==3.6
|
81 |
+
markdown-it-py==3.0.0
|
82 |
+
MarkupSafe==2.1.5
|
83 |
+
matplotlib==3.7.5
|
84 |
+
mdurl==0.1.2
|
85 |
+
mir-eval==0.7
|
86 |
+
more-itertools==10.2.0
|
87 |
+
mpmath==1.3.0
|
88 |
+
msgpack==1.0.8
|
89 |
+
multidict==6.0.5
|
90 |
+
networkx==3.1
|
91 |
+
nltk==3.8.1
|
92 |
+
normalise==0.1.8
|
93 |
+
numba==0.58.1
|
94 |
+
numpy==1.22.4
|
95 |
+
oauthlib==3.2.2
|
96 |
+
orjson==3.10.0
|
97 |
+
pandas==2.0.3
|
98 |
+
pb-bss-eval==0.0.2
|
99 |
+
pesq==0.0.4
|
100 |
+
pillow==10.2.0
|
101 |
+
pkgutil_resolve_name==1.3.10
|
102 |
+
pooch==1.8.1
|
103 |
+
portalocker==2.8.2
|
104 |
+
protobuf==3.20.3
|
105 |
+
pyasn1==0.5.1
|
106 |
+
pyasn1-modules==0.3.0
|
107 |
+
pycparser==2.21
|
108 |
+
pydantic==2.6.4
|
109 |
+
pydantic_core==2.16.3
|
110 |
+
pydot-ng==2.0.0
|
111 |
+
pydub==0.25.1
|
112 |
+
pyparsing==3.1.2
|
113 |
+
pysndfx==0.3.6
|
114 |
+
PySocks==1.7.1
|
115 |
+
pystoi==0.4.1
|
116 |
+
python-magic==0.4.27
|
117 |
+
python-multipart==0.0.9
|
118 |
+
pytorch-lightning==1.8.6
|
119 |
+
pytorch-ranger==0.1.1
|
120 |
+
pytz==2024.1
|
121 |
+
PyYAML==6.0.1
|
122 |
+
referencing==0.34.0
|
123 |
+
regex==2023.12.25
|
124 |
+
requests==2.31.0
|
125 |
+
requests-oauthlib==1.4.0
|
126 |
+
resampy==0.4.3
|
127 |
+
rich==13.7.1
|
128 |
+
roman==4.1
|
129 |
+
rpds-py==0.18.0
|
130 |
+
rsa==4.9
|
131 |
+
ruamel.yaml==0.18.6
|
132 |
+
ruamel.yaml.clib==0.2.8
|
133 |
+
sacrebleu==2.4.1
|
134 |
+
safetensors==0.4.2
|
135 |
+
scikit-learn==1.3.2
|
136 |
+
scipy==1.7.1
|
137 |
+
sed-eval==0.2.1
|
138 |
+
semantic-version==2.10.0
|
139 |
+
sentencepiece==0.1.96
|
140 |
+
sentry-sdk==1.42.0
|
141 |
+
setproctitle==1.3.3
|
142 |
+
shellingham==1.5.4
|
143 |
+
sklearn==0.0
|
144 |
+
smmap==5.0.1
|
145 |
+
sniffio==1.3.1
|
146 |
+
sortedcontainers==2.4.0
|
147 |
+
soundfile==0.12.1
|
148 |
+
soupsieve==2.5
|
149 |
+
sox==1.4.1
|
150 |
+
soxr==0.3.7
|
151 |
+
speechbrain==1.0.0
|
152 |
+
termcolor==2.4.0
|
153 |
+
threadpoolctl==3.3.0
|
154 |
+
tokenizers==0.15.2
|
155 |
+
tomlkit==0.12.0
|
156 |
+
toolz==0.12.1
|
157 |
+
torch==1.9.0
|
158 |
+
torch-optimizer==0.3.0
|
159 |
+
torch-stoi==0.2.1
|
160 |
+
torchaudio==0.9.0
|
161 |
+
torchmetrics==1.2.1
|
162 |
+
torchvision==0.10.0
|
163 |
+
tqdm==4.66.2
|
164 |
+
transformers==4.38.2
|
165 |
+
triton==2.2.0
|
166 |
+
typer==0.11.1
|
167 |
+
typing_extensions==4.10.0
|
168 |
+
tzdata==2024.1
|
169 |
+
urllib3==2.2.1
|
170 |
+
utility-helper==0.1.2
|
requirements.txt
CHANGED
@@ -1,170 +1,49 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
google-auth-oauthlib==1.0.0
|
51 |
-
gradio==4.24.0
|
52 |
-
gradio_client==0.14.0
|
53 |
-
grpcio==1.62.1
|
54 |
-
h11==0.14.0
|
55 |
-
h5py==3.10.0
|
56 |
-
httpcore==1.0.5
|
57 |
-
httpx==0.27.0
|
58 |
-
huggingface-hub==0.21.4
|
59 |
-
Hydra==2.5
|
60 |
-
hydra-core==1.0.7
|
61 |
-
hydra-slayer==0.5.0
|
62 |
-
HyperPyYAML==1.2.2
|
63 |
-
idna==3.6
|
64 |
-
importlib_resources==6.3.0
|
65 |
-
intervaltree==3.1.0
|
66 |
-
ipywidgets==8.1.2
|
67 |
-
Jinja2==3.1.3
|
68 |
-
joblib==1.3.2
|
69 |
-
jsonschema==4.21.1
|
70 |
-
jsonschema-specifications==2023.12.1
|
71 |
-
julius==0.2.7
|
72 |
-
jupyterlab_widgets==3.0.10
|
73 |
-
kaldi-io==0.9.8
|
74 |
-
kiwisolver==1.4.5
|
75 |
-
lazy_loader==0.3
|
76 |
-
librosa==0.10.1
|
77 |
-
lightning-utilities==0.10.1
|
78 |
-
llvmlite==0.41.1
|
79 |
-
lxml==5.1.0
|
80 |
-
Markdown==3.6
|
81 |
-
markdown-it-py==3.0.0
|
82 |
-
MarkupSafe==2.1.5
|
83 |
-
matplotlib==3.7.5
|
84 |
-
mdurl==0.1.2
|
85 |
-
mir-eval==0.7
|
86 |
-
more-itertools==10.2.0
|
87 |
-
mpmath==1.3.0
|
88 |
-
msgpack==1.0.8
|
89 |
-
multidict==6.0.5
|
90 |
-
networkx==3.1
|
91 |
-
nltk==3.8.1
|
92 |
-
normalise==0.1.8
|
93 |
-
numba==0.58.1
|
94 |
-
numpy==1.22.4
|
95 |
-
oauthlib==3.2.2
|
96 |
-
orjson==3.10.0
|
97 |
-
pandas==2.0.3
|
98 |
-
pb-bss-eval==0.0.2
|
99 |
-
pesq==0.0.4
|
100 |
-
pillow==10.2.0
|
101 |
-
pkgutil_resolve_name==1.3.10
|
102 |
-
pooch==1.8.1
|
103 |
-
portalocker==2.8.2
|
104 |
-
protobuf==3.20.3
|
105 |
-
pyasn1==0.5.1
|
106 |
-
pyasn1-modules==0.3.0
|
107 |
-
pycparser==2.21
|
108 |
-
pydantic==2.6.4
|
109 |
-
pydantic_core==2.16.3
|
110 |
-
pydot-ng==2.0.0
|
111 |
-
pydub==0.25.1
|
112 |
-
pyparsing==3.1.2
|
113 |
-
pysndfx==0.3.6
|
114 |
-
PySocks==1.7.1
|
115 |
-
pystoi==0.4.1
|
116 |
-
python-magic==0.4.27
|
117 |
-
python-multipart==0.0.9
|
118 |
-
pytorch-lightning==1.8.6
|
119 |
-
pytorch-ranger==0.1.1
|
120 |
-
pytz==2024.1
|
121 |
-
PyYAML==6.0.1
|
122 |
-
referencing==0.34.0
|
123 |
-
regex==2023.12.25
|
124 |
-
requests==2.31.0
|
125 |
-
requests-oauthlib==1.4.0
|
126 |
-
resampy==0.4.3
|
127 |
-
rich==13.7.1
|
128 |
-
roman==4.1
|
129 |
-
rpds-py==0.18.0
|
130 |
-
rsa==4.9
|
131 |
-
ruamel.yaml==0.18.6
|
132 |
-
ruamel.yaml.clib==0.2.8
|
133 |
-
sacrebleu==2.4.1
|
134 |
-
safetensors==0.4.2
|
135 |
-
scikit-learn==1.3.2
|
136 |
-
scipy==1.7.1
|
137 |
-
sed-eval==0.2.1
|
138 |
-
semantic-version==2.10.0
|
139 |
-
sentencepiece==0.1.96
|
140 |
-
sentry-sdk==1.42.0
|
141 |
-
setproctitle==1.3.3
|
142 |
-
shellingham==1.5.4
|
143 |
-
sklearn==0.0
|
144 |
-
smmap==5.0.1
|
145 |
-
sniffio==1.3.1
|
146 |
-
sortedcontainers==2.4.0
|
147 |
-
soundfile==0.12.1
|
148 |
-
soupsieve==2.5
|
149 |
-
sox==1.4.1
|
150 |
-
soxr==0.3.7
|
151 |
-
speechbrain==1.0.0
|
152 |
-
termcolor==2.4.0
|
153 |
-
threadpoolctl==3.3.0
|
154 |
-
tokenizers==0.15.2
|
155 |
-
tomlkit==0.12.0
|
156 |
-
toolz==0.12.1
|
157 |
-
torch==1.9.0
|
158 |
-
torch-optimizer==0.3.0
|
159 |
-
torch-stoi==0.2.1
|
160 |
-
torchaudio==0.9.0
|
161 |
-
torchmetrics==1.2.1
|
162 |
-
torchvision==0.10.0
|
163 |
-
tqdm==4.66.2
|
164 |
-
transformers==4.38.2
|
165 |
-
triton==2.2.0
|
166 |
-
typer==0.11.1
|
167 |
-
typing_extensions==4.10.0
|
168 |
-
tzdata==2024.1
|
169 |
-
urllib3==2.2.1
|
170 |
-
utility-helper==0.1.2
|
|
|
1 |
+
scipy==1.7.1 \
|
2 |
+
--hash=sha256:2a0eeaab01258e0870c4022a6cd329aef3b7c6c2b606bd7cf7bb2ba9820ae561 \
|
3 |
+
--hash=sha256:3304bd5bc32e00954ac4b3f4cc382ca8824719bf348aacbec6347337d6b125fe \
|
4 |
+
--hash=sha256:3f52470e0548cdb74fb8ddf06773ffdcca7c97550f903b1c51312ec19243a7f7 \
|
5 |
+
--hash=sha256:4729b41a4cdaf4cd011aeac816b532f990bdf97710cef59149d3e293115cf467 \
|
6 |
+
--hash=sha256:4ee952f39a4a4c7ba775a32b664b1f4b74818548b65f765987adc14bb78f5802 \
|
7 |
+
--hash=sha256:611f9cb459d0707dd8e4de0c96f86e93f61aac7475fcb225e9ec71fecdc5cebf \
|
8 |
+
--hash=sha256:6b47d5fa7ea651054362561a28b1ccc8da9368a39514c1bbf6c0977a1c376764 \
|
9 |
+
--hash=sha256:71cfc96297617eab911e22216e8a8597703202e95636d9406df9af5c2ac99a2b \
|
10 |
+
--hash=sha256:787749110a23502031fb1643c55a2236c99c6b989cca703ea2114d65e21728ef \
|
11 |
+
--hash=sha256:90c07ba5f34f33299a428b0d4fa24c30d2ceba44d63f8385b2b05be460819fcb \
|
12 |
+
--hash=sha256:a496b42dbcd04ea9924f5e92be63af3d8e0f43a274b769bfaca0a297327d54ee \
|
13 |
+
--hash=sha256:bc61e3e5ff92d2f32bb263621d54a9cff5e3f7c420af3d1fa122ce2529de2bd9 \
|
14 |
+
--hash=sha256:c9951e3746b68974125e5e3445008a4163dd6d20ae0bbdae22b38cb8951dc11b \
|
15 |
+
--hash=sha256:d1388fbac9dd591ea630da75c455f4cc637a7ca5ecb31a6b6cef430914749cde \
|
16 |
+
--hash=sha256:d13f31457f2216e5705304d9f28e2826edf75487410a57aa99263fa4ffd792c2 \
|
17 |
+
--hash=sha256:d648aa85dd5074b1ed83008ae987c3fbb53d68af619fce1dee231f4d8bd40e2f \
|
18 |
+
--hash=sha256:da9c6b336e540def0b7fd65603da8abeb306c5fc9a5f4238665cbbb5ff95cf58 \
|
19 |
+
--hash=sha256:e101bceeb9e65a90dadbc5ca31283403a2d4667b9c178db29109750568e8d112 \
|
20 |
+
--hash=sha256:efdd3825d54c58df2cc394366ca4b9166cf940a0ebddeb87b6c10053deb625ea
|
21 |
+
fire==0.4.0 \
|
22 |
+
--hash=sha256:c5e2b8763699d1142393a46d0e3e790c5eb2f0706082df8f647878842c216a62
|
23 |
+
sklearn==0.0 \
|
24 |
+
--hash=sha256:e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31
|
25 |
+
s3prl==0.3.1 \
|
26 |
+
--hash=sha256:e497989b10d4e058b619cf3e7a547820fceb3fe18c14c566427eb7b8c770d62e
|
27 |
+
torchaudio==0.9.0 \
|
28 |
+
--hash=sha256:0a387e78eeaf6e0abd36df70e9d8a15d242b49c2507dbd9522568f5d4af5fb96 \
|
29 |
+
--hash=sha256:18763c05cb7d85a08b8ea960e40f6984e9513b02e76f4526d920493c701b0671 \
|
30 |
+
--hash=sha256:48e33bb96b7ff2dc10a778a695429dbd6dfc8c8baa0d7c9b63569cb002bb87cd \
|
31 |
+
--hash=sha256:62fd9393ddbe40aadaabef7595f5bff0057e39f7e519195a010731542815f5a4 \
|
32 |
+
--hash=sha256:76a5b8ea0e4ddafd5b8f24abdf1a6f7afe847d892570da13cf0fc9bceeac437f \
|
33 |
+
--hash=sha256:87520525da10b5f00d3e5e1180db6ee37b1fa305edb2260c7335e0859dbe634e \
|
34 |
+
--hash=sha256:9d3f5d6df7d91676e67a38a448253b74d77da723f8e24bd833ff7ed0f82fa4ef \
|
35 |
+
--hash=sha256:acf0d736a5c1ea6b94adf08b0a31670009b6e78dfe50a1b0bdabf2b0f7895dc0 \
|
36 |
+
--hash=sha256:ad221258fc5d1d446f2c1ce9a1bb54cc05ca2b208491d4eaa5af443f1c0f16a2 \
|
37 |
+
--hash=sha256:ba52ae64611773bec7fc664c29f9ea3e02c9e5c817693726b978ed1bdedd07f2 \
|
38 |
+
--hash=sha256:c6126556d529df73b676e023063388d551be3c0cb2d42a4ff5c4cfd44ef3e012 \
|
39 |
+
--hash=sha256:ef5f0b22646a94f95869001b40ab940468b1ae399d0ffd3bc73d5c43342a013a \
|
40 |
+
--hash=sha256:ef8dc4ab1ec807382a713e71e8493d1985930537c933273e3c0739f02183cedc \
|
41 |
+
--hash=sha256:efb16c593b2a5ada07b180580c7612617e84f4714ce86928ad54baefe71ef29d
|
42 |
+
numpy==1.20 \
|
43 |
+
--hash=sha256:b66a6c15d793eda7cdad986e737775aa31b9306d588c14dd0277d2dda5546150
|
44 |
+
sentencepiece==0.1.96 \
|
45 |
+
--hash=sha256:a336575463d75d3aac1f7e32470b8998643ccd9a73786bd726f6b0470520b6b4
|
46 |
+
six==0.9.0 \
|
47 |
+
--hash=sha256:14fd1ed3dd0e1a46cc53b8fc890b5a3b11737515aeb7f42c3af9f38e8d8975d7
|
48 |
+
termcolor==2.4.0 \
|
49 |
+
--hash=sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sp.yml
CHANGED
@@ -65,7 +65,7 @@ dependencies:
|
|
65 |
- aiosignal==1.3.1
|
66 |
- altair==5.2.0
|
67 |
- annotated-types==0.6.0
|
68 |
-
- antlr4-python3-runtime==4.
|
69 |
- anyio==4.3.0
|
70 |
- appdirs==1.4.4
|
71 |
- asteroid==0.4.4
|
@@ -117,7 +117,7 @@ dependencies:
|
|
117 |
- httpx==0.27.0
|
118 |
- huggingface-hub==0.21.4
|
119 |
- hydra==2.5
|
120 |
-
- hydra-core
|
121 |
- hydra-slayer==0.5.0
|
122 |
- hyperpyyaml==1.2.2
|
123 |
- idna==3.6
|
@@ -165,7 +165,7 @@ dependencies:
|
|
165 |
- nvidia-nvjitlink-cu12==12.4.99
|
166 |
- nvidia-nvtx-cu12==12.1.105
|
167 |
- oauthlib==3.2.2
|
168 |
-
- omegaconf
|
169 |
- orjson==3.10.0
|
170 |
- pandas==2.0.3
|
171 |
- pb-bss-eval==0.0.2
|
@@ -236,12 +236,12 @@ dependencies:
|
|
236 |
- tokenizers==0.15.2
|
237 |
- tomlkit==0.12.0
|
238 |
- toolz==0.12.1
|
239 |
-
- torch==1.9.0
|
240 |
- torch-optimizer==0.3.0
|
241 |
- torch-stoi==0.2.1
|
242 |
- torchaudio==0.9.0
|
243 |
- torchmetrics==1.2.1
|
244 |
-
- torchvision==0.10.0
|
245 |
- tqdm==4.66.2
|
246 |
- transformers==4.38.2
|
247 |
- triton==2.2.0
|
|
|
65 |
- aiosignal==1.3.1
|
66 |
- altair==5.2.0
|
67 |
- annotated-types==0.6.0
|
68 |
+
- antlr4-python3-runtime==4.8
|
69 |
- anyio==4.3.0
|
70 |
- appdirs==1.4.4
|
71 |
- asteroid==0.4.4
|
|
|
117 |
- httpx==0.27.0
|
118 |
- huggingface-hub==0.21.4
|
119 |
- hydra==2.5
|
120 |
+
- hydra-core<1.1
|
121 |
- hydra-slayer==0.5.0
|
122 |
- hyperpyyaml==1.2.2
|
123 |
- idna==3.6
|
|
|
165 |
- nvidia-nvjitlink-cu12==12.4.99
|
166 |
- nvidia-nvtx-cu12==12.1.105
|
167 |
- oauthlib==3.2.2
|
168 |
+
- omegaconf<2.1
|
169 |
- orjson==3.10.0
|
170 |
- pandas==2.0.3
|
171 |
- pb-bss-eval==0.0.2
|
|
|
236 |
- tokenizers==0.15.2
|
237 |
- tomlkit==0.12.0
|
238 |
- toolz==0.12.1
|
239 |
+
- torch==1.9.0
|
240 |
- torch-optimizer==0.3.0
|
241 |
- torch-stoi==0.2.1
|
242 |
- torchaudio==0.9.0
|
243 |
- torchmetrics==1.2.1
|
244 |
+
- torchvision==0.10.0
|
245 |
- tqdm==4.66.2
|
246 |
- transformers==4.38.2
|
247 |
- triton==2.2.0
|