Skip to content

Commit

Permalink
Use ungated models for the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbenayoun committed Dec 12, 2024
1 parent 301bbcf commit dec0587
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/executorch/export/test_exporters_executorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_helps_no_raise(self):
@slow
@pytest.mark.run_slow
def test_llama3_2_1b_export_to_executorch(self):
model_id = "meta-llama/Llama-3.2-1B"
model_id = "NousResearch/Llama-3.2-1B"
task = "text-generation"
recipe = "xnnpack"
with tempfile.TemporaryDirectory() as tempdir:
Expand All @@ -47,7 +47,7 @@ def test_llama3_2_1b_export_to_executorch(self):
@slow
@pytest.mark.run_slow
def test_llama3_2_3b_export_to_executorch(self):
model_id = "meta-llama/Llama-3.2-3B"
model_id = "NousResearch/Hermes-3-Llama-3.2-3B"
task = "text-generation"
recipe = "xnnpack"
with tempfile.TemporaryDirectory() as tempdir:
Expand Down Expand Up @@ -75,7 +75,7 @@ def test_qwen2_5_export_to_executorch(self):
@slow
@pytest.mark.run_slow
def test_gemma2_export_to_executorch(self):
model_id = "google/gemma-2-2b"
model_id = "unsloth/gemma-2-2b-it"
task = "text-generation"
recipe = "xnnpack"
with tempfile.TemporaryDirectory() as tempdir:
Expand All @@ -89,7 +89,7 @@ def test_gemma2_export_to_executorch(self):
@slow
@pytest.mark.run_slow
def test_gemma_export_to_executorch(self):
model_id = "google/gemma-2b"
model_id = "weqweasdas/RM-Gemma-2B"
task = "text-generation"
recipe = "xnnpack"
with tempfile.TemporaryDirectory() as tempdir:
Expand Down

0 comments on commit dec0587

Please sign in to comment.