forked from phoenix-oss/llama-stack-mirror
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),
|
||||
("Context Length", f"{model.max_seq_length // 1024}K tokens"),
|
||||
("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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue