mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-09-19 05:54:20 +00:00
remove 2.0.1
This commit is contained in:
parent
bea8a76f8d
commit
36e884def0
6
.github/workflows/build-docker-image.yml
vendored
6
.github/workflows/build-docker-image.yml
vendored
@ -2,10 +2,6 @@
|
|||||||
# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages
|
# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages
|
||||||
name: Build docker image
|
name: Build docker image
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- docker2
|
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
@ -20,7 +16,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
image: ["torch2.0.1-cuda11.7", "torch2.0.0-cuda11.7", "torch1.13.0-cuda11.6", "torch1.12.1-cuda11.3", "torch1.9.0-cuda10.2"]
|
image: ["torch2.0.0-cuda11.7", "torch1.13.0-cuda11.6", "torch1.12.1-cuda11.3", "torch1.9.0-cuda10.2"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# refer to https://github.com/actions/checkout
|
# refer to https://github.com/actions/checkout
|
||||||
|
6
.github/workflows/run-docker-image.yml
vendored
6
.github/workflows/run-docker-image.yml
vendored
@ -1,9 +1,5 @@
|
|||||||
name: Run docker image
|
name: Run docker image
|
||||||
on:
|
on:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- docker2
|
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
@ -18,7 +14,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
image: ["torch2.0.1-cuda11.7", "torch2.0.0-cuda11.7", "torch1.13.0-cuda11.6", "torch1.12.1-cuda11.3", "torch1.9.0-cuda10.2"]
|
image: ["torch2.0.0-cuda11.7", "torch1.13.0-cuda11.6", "torch1.12.1-cuda11.3", "torch1.9.0-cuda10.2"]
|
||||||
steps:
|
steps:
|
||||||
# refer to https://github.com/actions/checkout
|
# refer to https://github.com/actions/checkout
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
|
||||||
|
|
||||||
ENV LC_ALL C.UTF-8
|
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
ARG K2_VERSION="1.24.3.dev20230718+cuda11.7.torch2.0.1"
|
|
||||||
ARG KALDIFEAT_VERSION="1.25.0.dev20230726+cuda11.7.torch2.0.1"
|
|
||||||
ARG TORCHAUDIO_VERSION="2.0.1+cu117"
|
|
||||||
|
|
||||||
LABEL authors="Fangjun Kuang <csukuangfj@gmail.com>"
|
|
||||||
LABEL k2_version=${K2_VERSION}
|
|
||||||
LABEL kaldifeat_version=${KALDIFEAT_VERSION}
|
|
||||||
LABEL github_repo="https://github.com/k2-fsa/icefall"
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
|
||||||
apt-get install -y --no-install-recommends \
|
|
||||||
curl \
|
|
||||||
vim \
|
|
||||||
libssl-dev \
|
|
||||||
autoconf \
|
|
||||||
automake \
|
|
||||||
bzip2 \
|
|
||||||
ca-certificates \
|
|
||||||
ffmpeg \
|
|
||||||
g++ \
|
|
||||||
gfortran \
|
|
||||||
git \
|
|
||||||
libtool \
|
|
||||||
make \
|
|
||||||
patch \
|
|
||||||
sox \
|
|
||||||
subversion \
|
|
||||||
unzip \
|
|
||||||
valgrind \
|
|
||||||
wget \
|
|
||||||
zlib1g-dev \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
RUN pip install --no-cache-dir \
|
|
||||||
torchaudio==${TORCHAUDIO_VERSION} -f https://download.pytorch.org/whl/torch_stable.html \
|
|
||||||
k2==${K2_VERSION} -f https://k2-fsa.github.io/k2/cuda.html \
|
|
||||||
git+https://github.com/lhotse-speech/lhotse \
|
|
||||||
kaldifeat==${KALDIFEAT_VERSION} -f https://csukuangfj.github.io/kaldifeat/cuda.html \
|
|
||||||
\
|
|
||||||
kaldi_native_io \
|
|
||||||
kaldialign \
|
|
||||||
kaldifst \
|
|
||||||
kaldilm \
|
|
||||||
sentencepiece>=0.1.96 \
|
|
||||||
tensorboard \
|
|
||||||
typeguard \
|
|
||||||
dill
|
|
||||||
|
|
||||||
RUN git clone https://github.com/k2-fsa/icefall /workspace/icefall && \
|
|
||||||
cd /workspace/icefall && \
|
|
||||||
pip install --no-cache-dir -r requirements.txt
|
|
||||||
|
|
||||||
WORKDIR /workspace/icefall
|
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user