-
Notifications
You must be signed in to change notification settings - Fork 770
Open
Labels
enhancementNew feature or requestNew feature or request
Description
First of all, thank you for the brilliant ML technique you developed. I read some of the Python tutorials and decided to replicate some of them in R.
These are just a few of my early observations from using the package:
- Model fitting is reasonably fast for small and medium samples
- Very easy to use
- The documentation is very lacking
For binary classification
- no formula syntax (I get that it is based on Python, but in R formula class is very practical; it will be useful when considering implementing user-specified interactions)
- target needs to be numeric 0/1, factors seem unsupported
- predict function only for "prob", not for "class" (adding a
typearg toebm_predict()with values "class" and "prob" is fairly consistent in R) - no pairwise interactions
- the
ebm_showmethod for single features is informative, although it is only the global explainer and the local explainer is not yet implemented
No regression algorithm (I saw in source code that it's on TODO list)
I am eager to use interpret in my analyses so I have to ask:
- When are you planning to implement the regression fitting and prediction functions?
- Are you considering aligning the package with the
tidymodelsframework? I think it would fit right in.
Thanks again.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request