LimeModel to build a lime model for prediction explanations in this package#'
LimeModel(
data,
Model = NULL,
Bins = 10,
ModelType = "xgboost",
NThreads = parallel::detectCores(),
MaxMem = "32G",
ModelPath = NULL,
ModelID = NULL
)
Supply a training data set. This data set should be the data right before it gets converted to an h2o, catboost, or xgboost data object.
Supply the model returned from training with the Auto__() functions.
Number of bins for discretizing numeric features
Select from xgboost, h2o, and catboost
Number of CPU threads
For use with H2O models. E.g. set to "28G"
Set to the path where your ML model is saved
ID used to identify your ML model
Model for utilizing lime
Other Model Evaluation and Interpretation:
AutoLimeAid()
,
EvalPlot()
,
ML_EvalPlots()
,
ParDepCalPlots()
,
ROCPlot()
,
RedYellowGreen()
,
VI_Plot()
,
threshOptim()