Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
20a2368
update transformers & optimum-intel versions
CuriousPanCake Dec 2, 2025
fe450ea
add huggingface-hub
CuriousPanCake Dec 2, 2025
3ac3246
optimum-intel version
CuriousPanCake Dec 2, 2025
c078295
use latest huggingface_hub
CuriousPanCake Dec 2, 2025
7411637
use huggingface_hub==1.0
CuriousPanCake Dec 2, 2025
0cad996
huggingface_hub==0.36.0
CuriousPanCake Dec 2, 2025
83ccaea
implement the suggestion
CuriousPanCake Dec 3, 2025
99b8f98
optimum intel new version
CuriousPanCake Dec 3, 2025
56ae2f5
transformers 5.56
CuriousPanCake Dec 3, 2025
274106e
Update tests/requirements_pytorch
CuriousPanCake Dec 3, 2025
a5f34ee
Apply suggestions from code review
CuriousPanCake Dec 3, 2025
c76ea5c
Update tests/requirements_pytorch
CuriousPanCake Dec 3, 2025
1634d35
Update requirements_pytorch
CuriousPanCake Dec 3, 2025
a313bc6
Update optimum-intel to 4.55
CuriousPanCake Dec 4, 2025
1b441a0
Update super-image
CuriousPanCake Dec 4, 2025
29c2f5e
Update requirements_pytorch
CuriousPanCake Dec 4, 2025
5248820
fix tests through configs
CuriousPanCake Dec 4, 2025
0d7c574
Temporarily disable PyTorch Models Tests Not Timm or Torchvision
CuriousPanCake Dec 5, 2025
4bba593
Use optimum-intel supporting transformers 5.56/5.57
CuriousPanCake Dec 5, 2025
479a426
Update tests/requirements_pytorch
CuriousPanCake Dec 5, 2025
71eb3e5
Merge branch 'master' into CVS-166967
CuriousPanCake Dec 5, 2025
bade0fa
Update sdpa2pa_ref_diff.py
CuriousPanCake Dec 5, 2025
d17934a
Disable PA tests
CuriousPanCake Dec 5, 2025
96ed3fb
Update job_pytorch_models_tests.yml
CuriousPanCake Dec 5, 2025
39a46ab
Update job_pytorch_models_tests.yml
CuriousPanCake Dec 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion tests/model_hub_tests/pytorch/test_hf_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
import os

from datasets import Audio, load_dataset
from huggingface_hub import hf_hub_download, model_info, snapshot_download
from huggingface_hub import model_info, snapshot_download

try:
from huggingface_hub import hf_hub_download as cached_download
except ImportError:
from huggingface_hub import cached_download

from PIL import Image
import pytest
import torch
Expand Down
6 changes: 3 additions & 3 deletions tests/requirements_pytorch
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ torch==2.9.0
torchvision==0.24.0
torchaudio==2.9.0
# before updating transformers version, make sure no tests (esp. sdpa2pa) are failing
transformers==4.47.1
transformers==4.55.4
pytest==7.0.1; python_version < '3.10'
pytest==7.2.0; python_version >= '3.10'
pytest-html==4.1.1
Expand Down Expand Up @@ -42,11 +42,11 @@ PyYAML==6.0.2
kornia==0.7.3
super-image==0.1.7
# huggingface-hub required for super-image
huggingface-hub==0.25.2
huggingface-hub==0.36.0

# For now, we decided to pin a specific working version of optimum-intel.
# It will be discussed in the future how to manage versioning of the components properly.
git+https://github.com/huggingface/optimum-intel.git@8ba536cd0a2bf93e9e88408b0048a7695db5be0b; python_version < "3.12"
git+https://github.com/huggingface/optimum-intel.git@75d6b7d3bc9544487e2111a610b59f8d62e0ef89; python_version < "3.12"
# set 'export HF_HUB_ENABLE_HF_TRANSFER=1' to benefits from hf_transfer
hf_transfer==0.1.8

Expand Down
Loading