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 054cff9 commit dfbcaf1Copy full SHA for dfbcaf1
.github/workflows/test_openvino_basic.yml
@@ -24,6 +24,11 @@ jobs:
24
# This also ensures that the test fails if dependencies break for Python 3.7
25
python-version: ["3.8", "3.12"]
26
os: ["ubuntu-22.04", "windows-latest"]
27
+ transformers-version: ["4.42.*"]
28
+ include:
29
+ - transformers-version: "4.36.0"
30
+ python-version: "3.12"
31
+ os: "ubuntu-22.04"
32
33
runs-on: ${{ matrix.os }}
34
@@ -40,6 +45,7 @@ jobs:
40
45
# optimum or transformers to a specific version
41
46
# Install PyTorch CPU to prevent unnecessary downloading/installing of CUDA packages
42
47
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
48
+ pip install transformers==${{ matrix.transformers-version }}
43
49
pip install .[tests] openvino
44
50
51
- name: Pip freeze
0 commit comments