Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Functionary models' benchmark results #124

Merged
merged 3 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/docs/benchmark.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Some of the LLMs above require using custom libraries to post-process LLM genera

`Nexusflow/NexusRaven-V2-13B` required [nexusraven-pip](https://github.com/nexusflowai/nexusraven-pip).

`functionary-small-v2.5` and `functionary-medium-v3.0` models are tested using [MeetKai's functionary](https://github.com/MeetKai/functionary?tab=readme-ov-file#setup) with the vllm framework. For each model, we compared the results with functionary's `Grammar Sampling` feature enabled and disabled, taking the highest score from either configuration. The `functionary-small-v2.5` model achieved a higher score than the `functionary-medium-v3.0` model, primarily due to the medium model exhibiting more hallucinations in some of our more advanced test cases.

:::::

∔ `Nexusflow/NexusRaven-V2-13B` and `gorilla-llm/gorilla-openfunctions-v2` don't accept tool observations, the result of running a tool or function once the LLM calls it, so we appended the observation to the prompt.
20 changes: 20 additions & 0 deletions docs/src/components/BenchmarkTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,26 @@ const data = [
gsm8k: '-',
math: '-',
mtBench:'-',
},
{
model: 'functionary-medium-v3.0',
params: 70.6,
functionCalling: '46.43%',
mmlu: '79.85',
gpqa: '38.39',
gsm8k: '89.54',
math: '43.02',
mtBench:'5.49',
},
{
model: 'functionary-small-v2.5',
params: 8.03,
functionCalling: '57.14%',
mmlu: '63.92',
gpqa: '32.14',
gsm8k: '66.11',
math: '20.54',
mtBench:'7.09',
}
];

Expand Down
Loading