Skip to content

Commit

Permalink
Fix typo in utils.py (octoml#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 authored May 8, 2023
1 parent 909f267 commit 79723ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlc_llm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def argparse_postproc_common(args: argparse.Namespace) -> None:
if args.model.startswith("vicuna-") or args.model.startswith("llama-"):
args.conv_template = "vicuna_v1.1"
args.model_category = "llama"
if args.model.startswith("dolly-"):
elif args.model.startswith("dolly-"):
args.conv_template = "dolly"
args.model_category = "gpt_neox"
elif args.model.startswith("stablelm-"):
Expand Down

0 comments on commit 79723ab

Please sign in to comment.