lime
lime copied to clipboard
Local Interpretable Model-Agnostic Explanations (R port of original Python package)
0 I've successfully installed Lime (and glmnet) in R but when I try loading it i receive an error: ``` > require(lime) Loading required package: lime Error: package or namespace...
`n_label`, should be `n_labels`.
note: I first posted this issue on stackoverflow, then realised this was probably a better place to ask. (https://stackoverflow.com/questions/49280345/can-the-r-version-of-lime-explain-xgboost-models-with-countpoisson-objective-fu) I generated a model using xgb.train with the "count:poisson" objective function...
Is there any easy solution provided by `lime` to “re-inject” the original values in the results (explainer table and plots), when a normalization was applied to the dataset (like `step_center()`,...
install.packages("Epi") Installing package into ‘/home/krishna/R/x86_64-pc-linux-gnu-library/3.5’ (as ‘lib’ is unspecified) Warning in install.packages : dependency ‘cmprsk’ is not available trying URL 'https://cloud.r-project.org/src/contrib/Epi_2.37.tar.gz' Content type 'application/x-gzip' length 5537547 bytes (5.3 MB) ==================================================...
Pull request for issue #162. Adding distance to Gower's Distance function to include feature importance from the model in calculating distances.
Is it possible to add feature importance of the model that needs to be explained as weights to gower_dist? This would ensure that features that are not important in the...
Fixed extraction methodology for special case (`bin_continuous = FALSE, use_density = TRUE`) See: #161
When setting `bin_continuous = FALSE` and `use_density = TRUE` an error is thrown. This is because elements of the distribution are extracted which do not exist. The mean and the...
I have latest `lime` version and looked thourgh all related topics (like #105) to my problem. I have LSTM regression network and I don't have any issues training it and...