Skip to content

Commit d2c0365

Browse files
authored
Merge branch 'dev_1.11.0' into derandomized_smoothing
2 parents ec23ac9 + 50128f5 commit d2c0365

File tree

94 files changed

+6004
-1604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+6004
-1604
lines changed

.github/actions/deepspeech-v2/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ RUN cd warp-ctc/pytorch_binding && python setup.py install
3737

3838
RUN git clone https://github.com/SeanNaren/deepspeech.pytorch.git
3939
RUN cd deepspeech.pytorch && git checkout V2.1
40-
RUN cd deepspeech.pytorch && pip install -r requirements_test.txt
40+
RUN cd deepspeech.pytorch && pip install -r requirements.txt
4141
RUN cd deepspeech.pytorch && pip install -e .
4242

4343
RUN pip install numba==0.50.0
4444
RUN pip install pytest-cov
45+
RUN pip install pydub==0.25.1

.github/actions/deepspeech-v3/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ RUN pip install torchaudio==0.6.0
3434
RUN pip install --no-build-isolation fairscale
3535

3636
RUN git clone https://github.com/SeanNaren/deepspeech.pytorch.git
37-
RUN cd deepspeech.pytorch && pip install -r requirements_test.txt
37+
RUN cd deepspeech.pytorch && pip install -r requirements.txt
3838
RUN cd deepspeech.pytorch && pip install -e .
3939

4040
RUN pip install numba==0.50.0
4141
RUN pip install pytest-cov
42+
RUN pip install pydub==0.25.1

.github/workflows/ci-deepspeech-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
test_deepspeech_v2:
2323
name: PyTorchDeepSpeech v2
2424
runs-on: ubuntu-latest
25-
container: minhitbk/art_testing_envs:deepspeech_v2
25+
container: adversarialrobustnesstoolbox/art_testing_envs:deepspeech_v2
2626
steps:
2727
- name: Checkout Repo
2828
uses: actions/checkout@v3

.github/workflows/ci-deepspeech-v3.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,13 @@ on:
1919
- cron: '0 8 * * 0'
2020

2121
jobs:
22-
test_deepspeech_v3:
23-
name: PyTorchDeepSpeech v3
24-
runs-on: ubuntu-latest
25-
container: minhitbk/art_testing_envs:deepspeech_v3
26-
steps:
27-
- name: Checkout Repo
28-
uses: actions/checkout@v3
29-
- name: Run Test Action
30-
uses: ./.github/actions/deepspeech-v3
31-
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v3
33-
with:
34-
fail_ci_if_error: true
3522
test_deepspeech_v3_torch_1_10:
3623
name: PyTorchDeepSpeech v3 / PyTorch 1.10
3724
runs-on: ubuntu-latest
3825
container: adversarialrobustnesstoolbox/art_testing_envs:deepspeech_v3_torch_1_10
3926
steps:
4027
- name: Checkout Repo
41-
uses: actions/checkout@v2.4.0
28+
uses: actions/checkout@v3
4229
- name: Run Test Action
4330
uses: ./.github/actions/deepspeech-v3
4431
- name: Upload coverage to Codecov

.github/workflows/ci-keras.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Checkout Repo
5656
uses: actions/checkout@v3
5757
- name: Setup Python
58-
uses: actions/setup-python@v3
58+
uses: actions/setup-python@v4
5959
with:
6060
python-version: ${{ matrix.python }}
6161
- name: Install Dependencies

.github/workflows/ci-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Checkout Repo
4242
uses: actions/checkout@v3
4343
- name: Setup Python
44-
uses: actions/setup-python@v3
44+
uses: actions/setup-python@v4
4545
with:
4646
python-version: ${{ matrix.python }}
4747
- name: Install Dependencies

.github/workflows/ci-lingvo.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Checkout Repo
3939
uses: actions/checkout@v3
4040
- name: Setup Python
41-
uses: actions/setup-python@v3
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python }}
4444
- name: Pre-install Lingvo ASR
@@ -47,7 +47,7 @@ jobs:
4747
sudo apt-get update
4848
sudo apt-get -y -q install ffmpeg libavcodec-extra
4949
python -m pip install --upgrade pip setuptools wheel
50-
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest/d;/^pytest-mock/d;/^torch/d;/^torchaudio/d;/^torchvision/d;/^xgboost/d' requirements_test.txt)
50+
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest/d;/^pytest-mock/d;/^torch/d;/^torchaudio/d;/^torchvision/d;/^xgboost/d;/^requests/d' requirements_test.txt)
5151
pip install scipy==1.5.4
5252
pip install matplotlib==3.3.4
5353
pip install pandas==1.1.5
@@ -68,6 +68,7 @@ jobs:
6868
pip install torchaudio==0.10.2+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
6969
pip install torchvision==0.11.3+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
7070
pip install xgboost==1.5.2
71+
pip install requests==2.27.1
7172
pip list
7273
- name: Run ${{ matrix.name }} Tests
7374
run: ./run_tests.sh ${{ matrix.framework }}

.github/workflows/ci-mxnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Checkout Repo
3535
uses: actions/checkout@v3
3636
- name: Setup Python
37-
uses: actions/setup-python@v3
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: ${{ matrix.python }}
4040
- name: Install Dependencies

.github/workflows/ci-pytorch-object-detectors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Checkout Repo
2929
uses: actions/checkout@v3
3030
- name: Setup Python
31-
uses: actions/setup-python@v3
31+
uses: actions/setup-python@v4
3232
with:
3333
python-version: 3.8
3434
- name: Install Dependencies

.github/workflows/ci-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Checkout Repo
5050
uses: actions/checkout@v3
5151
- name: Setup Python
52-
uses: actions/setup-python@v3
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: ${{ matrix.python }}
5555
- name: Install Dependencies

0 commit comments

Comments
 (0)