We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would like to be able to select all the examples in a dataset that get a particular score in a particular experiment, then add them to a split.
Here's the workflow I want to follow when evaluating my RAG app's retrieval step:
On the experiment page, I can get as far as to singling out all the "score = 1" examples, but I can't then select them and put them in a split.
My use case here is specifically about adding to a split, but any bulk operation might be useful (deleting, moving to another dataset, etc)
My workaround is to capture/categorize the example IDs in code during evaluation and then use client.update_dataset_splits(...) to make the splits.
client.update_dataset_splits(...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature request
I would like to be able to select all the examples in a dataset that get a particular score in a particular experiment, then add them to a split.
Motivation
Here's the workflow I want to follow when evaluating my RAG app's retrieval step:
On the experiment page, I can get as far as to singling out all the "score = 1" examples, but I can't then select them and put them in a split.
My use case here is specifically about adding to a split, but any bulk operation might be useful (deleting, moving to another dataset, etc)
My workaround is to capture/categorize the example IDs in code during evaluation and then use
client.update_dataset_splits(...)
to make the splits.The text was updated successfully, but these errors were encountered: