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
It'd be nice if the user could specify the target indices a user asks about. i.e.,
targets: ["a", "b", "c", "d", "e"] samplers: ValidationSampling: {queries: [(0, 1, 2), (1, 2, 3), (2, 3, 4)]}
would show these targets to the user:
["a", "b", "c"]
["b", "c", "d"]
["c", "d", "e"]
cc @kushinm
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It'd be nice if the user could specify the target indices a user asks about. i.e.,
would show these targets to the user:
["a", "b", "c"]
(via target indices 0, 1, 2)["b", "c", "d"]
(via target indices 1, 2, 3)["c", "d", "e"]
(via target indices 2, 3, 4)cc @kushinm
The text was updated successfully, but these errors were encountered: