The shimex
package enables interactive exploration of machine learning predictive models using the shiny
application.
Thanks to the graphical interface, the application streamlines the process of model exploration.
The Explainers presented in the app:
ingredients
,iBreakDown
,DALEXtra
, iml
, localmodel
,iBreakDown
, shapper
, iml
.# Development version from GitHub:
# install.packages("devtools")
devtools::install_github("ModelOriented/shimex")
library(randomForest)
# Create a model
model_rm <- randomForest(life_length ~., data = DALEX::dragons, ntree = 200)
# Wrap it into an explainer
explainer <- DALEX::explain(model_rm)
# Choose an observation (it is possible to modify it through the app)
observation <- DALEX::dragons[1, ]
# Create shimex app for observation
shimex::create_shimex(explainer, observation)
Results can be found following the link.