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
Default predict function for a function shall be function(m, x) m(x) as in this example
function(m, x) m(x)
DALEX::explain(function(x) x$Age > 30, data = data.frame(Age = c(30, 50), Gender = c("Male", "Female")), predict_function = function(m, x) m(x), y = c(TRUE, TRUE), label = "hello")
The text was updated successfully, but these errors were encountered:
candidate fix for #396
f966ea9
fixed with f966ea9
Sorry, something went wrong.
pbiecek
No branches or pull requests
Default predict function for a function shall be
function(m, x) m(x)
as in this example
The text was updated successfully, but these errors were encountered: