mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-02 12:30:38 +00:00
attribute changed (model_args -> arch_args)
This commit is contained in:
parent
f136f802b1
commit
e617273d8c
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class ModelDescribe(Subcommand):
|
||||||
("Description", model.description_markdown),
|
("Description", model.description_markdown),
|
||||||
("Context Length", f"{model.max_seq_length // 1024}K tokens"),
|
("Context Length", f"{model.max_seq_length // 1024}K tokens"),
|
||||||
("Weights format", model.quantization_format.value),
|
("Weights format", model.quantization_format.value),
|
||||||
("Model params.json", json.dumps(model.model_args, indent=4)),
|
("Model params.json", json.dumps(model.arch_args, indent=4)),
|
||||||
]
|
]
|
||||||
|
|
||||||
if model.recommended_sampling_params is not None:
|
if model.recommended_sampling_params is not None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue