Skip to content
Merged
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
4 changes: 1 addition & 3 deletions examples/models/llama/export_llama_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,7 @@ def export_llama(
elif model_name == "phi_4_mini":
from executorch.examples.models.phi_4_mini import convert_weights
elif model_name == "smollm2":
from executorch.examples.models.smollm2 import ( # pyre-ignore[21]
convert_weights,
)
from executorch.examples.models.smollm2 import convert_weights
else:
raise ValueError(
f"Converting weights to meta format for {model_name} is not yet supported"
Expand Down
Loading