-
Notifications
You must be signed in to change notification settings - Fork 9
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
Practice prompt calibration #670
Conversation
…he 0.5 standards. Moving calibration testing to modelbench-private.
…he 0.5 standards. Moving calibration testing to modelbench-private.
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see nothing obviously wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
benchmarks.append(GeneralPurposeAiChatBenchmarkV1(l, "ensemble")) | ||
run_result = run_benchmarks_for_suts(benchmarks, reference_suts, 100) | ||
run_result = run_benchmarks_for_suts(benchmarks, reference_suts, None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style: for non-obvious arguments, I generally recommend naming it, for 3am me. E.g.
run_benchmarks_for_suts(benchmarks, reference_suts, what_this_does=None)
No description provided.