Skip to content

Commit 52ecd62

Browse files
committed
Fix eval mmlu and wikitext tests
1 parent 77df3eb commit 52ecd62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/models/llama/export_llama_lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ def _prepare_for_llama_export(args) -> LLMEdgeManager:
598598

599599
# Assumes the checkpoint has uniform dtype.
600600
checkpoint_dtype = next(edge_manager.model.parameters()).dtype
601-
print(f"checkpoint dtype: {checkpoint_dtype}")
601+
logging.info(f"checkpoint dtype: {checkpoint_dtype}")
602602
# We want to quantize the weights of the model in the checkpoint dtype.
603603
edge_manager = edge_manager.set_output_dir(output_dir_path).source_transform(
604604
_get_source_transforms(

0 commit comments

Comments
 (0)