-
Notifications
You must be signed in to change notification settings - Fork 67
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
feat(weave): Add initial suite of scorers, refactor weave/flow #2662
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Preview this PR with FeatureBee: https://beta.wandb.ai/?betaVersion=142eca3bb9565e81853eba3b20bf0d455199c1fb |
tcapelle
force-pushed
the
add_more_scorers
branch
from
October 10, 2024 16:49
b8dcef6
to
3c398f9
Compare
tcapelle
force-pushed
the
add_more_scorers
branch
from
October 28, 2024 17:13
152ae34
to
2ac6f53
Compare
andrewtruong
approved these changes
Oct 28, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Scorers
Create opinionated scorers for users looking for off-the-shelf evaluators to common LLM issues.
TODO
New Scorers
This PR introduces several scorers for evaluating different aspects of model outputs. These scorers are designed to work with the existing Scorer base class and can be easily integrated into the evaluation pipeline. The LLM-based scorers support multiple LLM providers (OpenAI, Anthropic, Google Generative AI and Mistral) with a unified interface and use the
instructor
library for a consistent api and for structured outputs.LLMScorer: A base class for LLM-based scorers.
InstructorLLMScorer: for instructor-powered LLMs
User-facing api changes
outputs
can be used as a param in thescore
function as an alternative tomodel_outputs
column_map
as an optional attribute forScorer
to give more flexibility when scorer param names are different to dataset column names.Structural repo changes
creation of
weave/flow/scorers
and moving most core scoring functionality fromweave/flow/scorer.py
toweave/flow/scorers/base_scorer.py
weave/flow/scorer.py
kept around for now for backward compatibilityweave/scorers
dir was created for high-level imports to enable more dev-friendly importing of scorers. The user shouldn't have to know aboutflow
:from weave.flow.scorers.json_scorer import ValidJSONScorer
from weave.scorers import ValidJSONScorer
Documentation