We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd1292 commit 9e634caCopy full SHA for 9e634ca
.github/workflows/ci-huggingface.yml
@@ -49,7 +49,7 @@ jobs:
49
sudo apt-get update
50
sudo apt-get -y -q install ffmpeg libavcodec-extra
51
python -m pip install --upgrade pip setuptools wheel
52
- pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^mxnet/d' requirements_test.txt)
+ pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^torch/d;/^torchvision/d;/^torchaudio/d;/^transformers/d' requirements_test.txt)
53
pip install tensorflow==2.18.1
54
pip install keras==3.10.0
55
pip install torch==${{ matrix.torch }} --index-url https://download.pytorch.org/whl/cpu
.github/workflows/ci-keras.yml
@@ -48,7 +48,7 @@ jobs:
48
- pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^tensorflow-addons/d;/^mxnet/d' requirements_test.txt)
+ pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^tensorflow-addons/d' requirements_test.txt)
pip install tensorflow==${{ matrix.tensorflow }}
pip install keras==${{ matrix.keras }}
pip install tensorflow-addons==${{ matrix.tf_addons }}
.github/workflows/ci-legacy.yml
@@ -52,7 +52,7 @@ jobs:
- pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^torch/d;/^torchvision/d;/^torchaudio/d;/^mxnet/d' requirements_test.txt)
+ pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^torch/d;/^torchvision/d;/^torchaudio/d' requirements_test.txt)
56
57
58
pip install scikit-learn==${{ matrix.scikit-learn }}
.github/workflows/ci-pytorch-object-detectors.yml
@@ -39,7 +39,7 @@ jobs:
39
40
41
42
- pip install -q -r <(sed '/^mxnet/d' requirements_test.txt)
+ pip install -q -r requirements_test.txt
43
pip list
44
- name: Run Test Action - test_pytorch_object_detector
45
run: pytest --cov-report=xml --cov=art --cov-append -q -vv tests/estimators/object_detection/test_pytorch_object_detector.py --framework=pytorch --durations=0
.github/workflows/ci-pytorch.yml
@@ -54,7 +54,7 @@ jobs:
+ pip install -q -r <(sed '/^torch/d;/^torchvision/d;/^torchaudio/d' requirements_test.txt)
59
pip install torchvision==${{ matrix.torchvision }} --index-url https://download.pytorch.org/whl/cpu
60
pip install torchaudio==${{ matrix.torchaudio }} --index-url https://download.pytorch.org/whl/cpu
.github/workflows/ci-style-checks.yml
- name: Install Dependencies
run: |
+ pip install -q -r <(sed '/^tensorflow/d;/^keras/d' requirements_test.txt)
.github/workflows/ci-tensorflow-v2.yml
requirements_test.txt
@@ -26,7 +26,6 @@ multiprocess>=0.70.12
26
27
tensorflow==2.18.1
28
keras==3.10.0
29
-tensorflow-addons==0.23.0
30
31
# PyTorch
32
torch==2.7.0
setup.py
@@ -62,9 +62,9 @@ def get_version(rel_path):
62
"gpy": ["GPy"],
63
"keras": ["keras", "h5py"],
64
"lightgbm": ["lightgbm"],
65
- "tensorflow": ["tensorflow", "tensorflow_addons", "h5py"],
66
- "tensorflow_image": ["tensorflow", "tensorflow_addons", "h5py", "Pillow", "ffmpeg-python", "opencv-python"],
67
- "tensorflow_audio": ["tensorflow", "tensorflow_addons", "h5py", "pydub", "resampy", "librosa"],
+ "tensorflow": ["tensorflow", "h5py"],
+ "tensorflow_image": ["tensorflow", "h5py", "Pillow", "ffmpeg-python", "opencv-python"],
+ "tensorflow_audio": ["tensorflow", "h5py", "pydub", "resampy", "librosa"],
68
"pytorch": ["torch", "torchvision"],
69
"pytorch_image": ["torch", "torchvision", "kornia", "Pillow", "ffmpeg-python", "opencv-python"],
70
"pytorch_audio": ["torch", "torchvision", "torchaudio", "pydub", "resampy", "librosa"],
0 commit comments