Skip to content

Commit 196499a

Browse files
committed
Change model default arg
1 parent 1825972 commit 196499a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/models/llama/export_llama_lib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ def build_args_parser() -> argparse.ArgumentParser:
134134
# )
135135
parser.add_argument(
136136
"--model",
137-
default="llama2",
137+
default="llama3",
138138
choices=EXECUTORCH_DEFINED_MODELS + TORCHTUNE_DEFINED_MODELS,
139-
help="The Lllama model to export. llama2, llama3, llama3_1, llama3_2 share the same architecture, so they are technically interchangeable, given you provide the checkpoint file for the desired version.",
139+
help="The Lllama model to export. llama2, llama3, llama3_1, llama3_2 share the same architecture, so they are technically interchangeable given you provide the checkpoint file for the desired version.",
140140
)
141141
parser.add_argument(
142142
"-E",

0 commit comments

Comments
 (0)