From ebe1ce0c96823d9194b1b252d99cd6e39c9a9368 Mon Sep 17 00:00:00 2001 From: Hrishith Thadicherla Date: Thu, 16 Apr 2026 16:57:26 +0530 Subject: [PATCH 1/2] Removed version fixes for torch transformers Signed-off-by: Hrishith Thadicherla --- examples/windows/onnx_ptq/genai_llm/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/windows/onnx_ptq/genai_llm/requirements.txt b/examples/windows/onnx_ptq/genai_llm/requirements.txt index 59b54311c08..0c36e77aaf3 100644 --- a/examples/windows/onnx_ptq/genai_llm/requirements.txt +++ b/examples/windows/onnx_ptq/genai_llm/requirements.txt @@ -1,3 +1,3 @@ datasets>=2.14.5 -torch==2.9.0 -transformers==4.57.3 +torch +transformers From 3bcd51e66a41f44e3bb92a3f6a997d6342ab657a Mon Sep 17 00:00:00 2001 From: Hrishith Thadicherla <99313418+hthadicherla@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:36:44 +0530 Subject: [PATCH 2/2] Add upper bound to transformers to install version < 5 Signed-off-by: Hrishith Thadicherla <99313418+hthadicherla@users.noreply.github.com> --- examples/windows/onnx_ptq/genai_llm/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/windows/onnx_ptq/genai_llm/requirements.txt b/examples/windows/onnx_ptq/genai_llm/requirements.txt index 0c36e77aaf3..92295a0d9eb 100644 --- a/examples/windows/onnx_ptq/genai_llm/requirements.txt +++ b/examples/windows/onnx_ptq/genai_llm/requirements.txt @@ -1,3 +1,3 @@ datasets>=2.14.5 torch -transformers +transformers<5.0.0