-
|
Is there a way to benchmark only specific model families (e.g., all llama variants) instead of listing each model individually? Would be great for comparing across sizes within a family. |
Beta Was this translation helpful? Give feedback.
Answered by
LarHope
Mar 20, 2026
Replies: 1 comment
-
|
Yes! You can pass multiple specific models: ollama-benchmark --models llama3.2:1b llama3.2:3b llama3.1:8bOr script it to find all models of a family: ollama list | grep llama | awk "{print \$1}" | xargs ollama-benchmark --modelsThe default models list already groups popular families for easy comparison. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
LarHope
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes! You can pass multiple specific models:
Or script it to find all models of a family:
The default models list already groups popular families for easy comparison.