Skip to content

Commit

Permalink
Update gen_readme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rickzx authored Jul 24, 2024
1 parent 5920649 commit 3f9c5b3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions gen_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
grouped_data = defaultdict(list)

model_display_names = {
"llama3.1": "Llama-3.1",
"llama3": "Llama-3",
"phi3": "Phi-3",
"mistral": "Mistral",
Expand All @@ -18,13 +19,14 @@
}

model_priority = {
"llama3": 1,
"phi3": 2,
"mistral": 3,
"qwen2": 4,
"gemma": 5,
"llama2": 6,
"mixtral": 7,
"llama3.1": 1,
"llama3": 2,
"phi3": 3,
"mistral": 4,
"qwen2": 5,
"gemma": 6,
"llama2": 7,
"mixtral": 8,
}

yaml_files = glob.glob(os.path.join(root_dir, "**/bento.yaml"), recursive=True)
Expand Down

0 comments on commit 3f9c5b3

Please sign in to comment.