minor typo and HuggingFace -> Hugging Face (#113)

This commit is contained in:
Mark Sze 2024-09-27 02:48:23 +10:00 committed by GitHub
parent 3ae1597b9b
commit 3c99f08267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View file

@ -51,7 +51,7 @@ class ModelDescribe(Subcommand):
colored("Model", "white", attrs=["bold"]),
colored(model.descriptor(), "white", attrs=["bold"]),
),
("HuggingFace ID", model.huggingface_repo or "<Not Available>"),
("Hugging Face ID", model.huggingface_repo or "<Not Available>"),
("Description", model.description),
("Context Length", f"{model.max_seq_length // 1024}K tokens"),
("Weights format", model.quantization_format.value),

View file

@ -36,7 +36,7 @@ class ModelList(Subcommand):
def _run_model_list_cmd(self, args: argparse.Namespace) -> None:
headers = [
"Model Descriptor",
"HuggingFace Repo",
"Hugging Face Repo",
"Context Length",
]