Skip to content

Commit f212a3e

Browse files
committed
remove hf cache dir, remove whisper
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
1 parent d17877b commit f212a3e

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

.github/workflows/test-check-transformers.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88

99
env:
1010
CADENCE: "commit"
11-
HF_HOME: /model-cache
1211
HF_TOKEN: ${{ secrets.HF_TOKEN_READ }}
1312

1413
jobs:

tests/llmcompressor/transformers/tracing/test_models.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
TraceableMllamaForConditionalGeneration,
88
TraceableQwen2_5_VLForConditionalGeneration,
99
TraceableQwen2VLForConditionalGeneration,
10-
TraceableWhisperForConditionalGeneration,
1110
)
1211
from llmcompressor.transformers.tracing.debug import trace
1312

@@ -79,20 +78,3 @@ def test_vision_trace(model_id, model_class, targets, ignore):
7978
modality="vision",
8079
trust_remote_code=True,
8180
)
82-
83-
84-
@pytest.mark.parametrize(
85-
"model_id,model_class,targets,ignore",
86-
[
87-
("openai/whisper-large-v3", TraceableWhisperForConditionalGeneration, None, []),
88-
],
89-
)
90-
def test_audio_trace(model_id, model_class, targets, ignore):
91-
trace(
92-
model_id,
93-
model_class,
94-
targets,
95-
ignore=ignore,
96-
modality="audio",
97-
trust_remote_code=True,
98-
)

0 commit comments

Comments
 (0)