Skip to content

Commit f6ee095

Browse files
committed
Merge remote-tracking branch 'art/dev_1.20.0' into detector-refactoring. Added missing dependency
Signed-off-by: Álvaro Bacca Peña <[email protected]> # Conflicts: # requirements_test.txt
2 parents 9983fe0 + e3bde9c commit f6ee095

Some content is hidden

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

46 files changed

+314
-914
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
uses: actions/checkout@v4
3232

3333
- name: Cache CIFAR-10 dataset
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.art/data/cifar-10-batches-py
3737
key: cifar10-dataset-cache-v1
3838

3939
- name: Cache MNIST dataset
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.art/data/mnist.npz
4343
key: mnist-dataset-cache-v1

.github/workflows/ci-espresso.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
uses: actions/checkout@v4
3232

3333
- name: Cache CIFAR-10 dataset
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.art/data/cifar-10-batches-py
3737
key: cifar10-dataset-cache-v1
3838

3939
- name: Cache MNIST dataset
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.art/data/mnist.npz
4343
key: mnist-dataset-cache-v1

.github/workflows/ci-goturn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
uses: actions/checkout@v4
3232

3333
- name: Cache CIFAR-10 dataset
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.art/data/cifar-10-batches-py
3737
key: cifar10-dataset-cache-v1
3838

3939
- name: Cache MNIST dataset
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.art/data/mnist.npz
4343
key: mnist-dataset-cache-v1

.github/workflows/ci-huggingface.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
pip list
6262
6363
- name: Cache CIFAR-10 dataset
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: ~/.art/data/cifar-10-batches-py
6767
key: cifar10-dataset-cache-v1
6868

6969
- name: Cache MNIST dataset
70-
uses: actions/cache@v3
70+
uses: actions/cache@v4
7171
with:
7272
path: ~/.art/data/mnist.npz
7373
key: mnist-dataset-cache-v1

.github/workflows/ci-keras.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
pip list
5656
5757
- name: Cache CIFAR-10 dataset
58-
uses: actions/cache@v3
58+
uses: actions/cache@v4
5959
with:
6060
path: ~/.art/data/cifar-10-batches-py
6161
key: cifar10-dataset-cache-v1
6262

6363
- name: Cache MNIST dataset
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: ~/.art/data/mnist.npz
6767
key: mnist-dataset-cache-v1

.github/workflows/ci-legacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
pip list
6565
6666
- name: Cache CIFAR-10 dataset
67-
uses: actions/cache@v3
67+
uses: actions/cache@v4
6868
with:
6969
path: ~/.art/data/cifar-10-batches-py
7070
key: cifar10-dataset-cache-v1
7171

7272
- name: Cache MNIST dataset
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: ~/.art/data/mnist.npz
7676
key: mnist-dataset-cache-v1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
pip list
4646
4747
- name: Cache CIFAR-10 dataset
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.art/data/cifar-10-batches-py
5151
key: cifar10-dataset-cache-v1
5252

5353
- name: Cache MNIST dataset
54-
uses: actions/cache@v3
54+
uses: actions/cache@v4
5555
with:
5656
path: ~/.art/data/mnist.npz
5757
key: mnist-dataset-cache-v1

.github/workflows/ci-pytorch.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
torch: 2.6.0
3535
torchvision: 0.21.0
3636
torchaudio: 2.6.0
37-
- name: PyTorch 2.7.0 (Python 3.10)
37+
- name: PyTorch 2.7.1 (Python 3.10)
3838
framework: pytorch
3939
python: '3.10'
40-
torch: 2.7.0
41-
torchvision: 0.22.0
42-
torchaudio: 2.7.0
40+
torch: 2.7.1
41+
torchvision: 0.22.1
42+
torchaudio: 2.7.1
4343

4444
name: ${{ matrix.name }}
4545
steps:
@@ -63,13 +63,13 @@ jobs:
6363
pip list
6464
6565
- name: Cache CIFAR-10 dataset
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: ~/.art/data/cifar-10-batches-py
6969
key: cifar10-dataset-cache-v1
7070

7171
- name: Cache MNIST dataset
72-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7373
with:
7474
path: ~/.art/data/mnist.npz
7575
key: mnist-dataset-cache-v1

.github/workflows/ci-scikit-learn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
pip list
5858
5959
- name: Cache CIFAR-10 dataset
60-
uses: actions/cache@v3
60+
uses: actions/cache@v4
6161
with:
6262
path: ~/.art/data/cifar-10-batches-py
6363
key: cifar10-dataset-cache-v1
6464

6565
- name: Cache MNIST dataset
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: ~/.art/data/mnist.npz
6969
key: mnist-dataset-cache-v1

.github/workflows/ci-tensorflow-v1.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)