Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test_model_conversion.py #70

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
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
3 changes: 0 additions & 3 deletions ai_edge_torch/generative/test/test_model_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def test_toy_model_with_kv_cache_with_hlfb(self):
)

def test_tiny_llama(self):
self.skipTest("b/338288901")
config = tiny_llama.get_fake_model_config_for_test()
pytorch_model = tiny_llama.TinyLLamma(config)

Expand Down Expand Up @@ -178,7 +177,6 @@ def test_tiny_llama_multisig(self):
)

def test_gemma(self):
self.skipTest("b/338288901")
config = gemma.get_fake_model_config_2b_for_test()
model = gemma.Gemma(config)

Expand All @@ -205,7 +203,6 @@ def test_gemma(self):
)

def test_phi2(self):
self.skipTest("b/338288901")
config = phi2.get_fake_model_config_for_test()
pytorch_model = phi2.Phi2(config)

Expand Down
Loading