Skip to content

Commit

Permalink
doc: adjust model priority
Browse files Browse the repository at this point in the history
  • Loading branch information
bojiang committed Sep 27, 2024
1 parent c32b111 commit 5a87146
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gen_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@

model_priority = {
"llama3.2": 1,
"llama3.1": 2,
"qwen2.5": 2,
"pixtral": 2,
"phi3": 3,
"mistral": 4,
"gemma2": 5,
"qwen2.5": 6,
"mixtral": 7,
"mistral-large": 8,
"codestral": 9,
Expand All @@ -50,7 +50,7 @@
grouped_data[data["name"]].append(
{
"name": data["name"],
"version": data["version"],
"version": data["version"].rsplit("-", 1)[0],
"model_name": data["labels"]["model_name"],
}
)
Expand Down

0 comments on commit 5a87146

Please sign in to comment.