DerWeh
DerWeh
@tuyenpm9 The `L/N` charter is a Unicode character: . I think FireFox's default font can't display it. But it works if you just copy the cryptic symbol into Vim, as...
@paulbkoch I'm interested in warm-starting the EBM. If this is possible using the `init_score` parameter or the `merge_ebms` function, this would be good-enough for me. Sadly, the link to your...
Indeed, the Ubuntu on my machine is quite old (and I have some constrains not allowing me to upgrade). Tried it on a different machine with a newer Ubuntu. ```bash...
It might be interesting to see, if [pythran](https://pythran.readthedocs.io/en/latest/) is an alternative to Cython. It seems like it handles high level `numpy` quite well, and would retain the readability of Python....
As far as I understand the only reason for `(miniyank-autoput)` is to keep compatibility to with registers, e.g. to use `"ap`. To just have a universal mapping I changed `miniyank#startput`...
Thanks for clearing up. I think the case `""p` can simply be handle by a `noremap`: `noremap ""p p` I don't understand what you mean by your other reason >...
@paulbkoch The regular and the DP EBMs are now separated (though it is not quite pretty yet). Maybe this is the right point to reevaluate if this is where we...
Sorry, @paulbkoch I wasn't clear enough. The class hierarchy is implemented by now: ```python class EBMBase(ABC, BaseEstimator): .... class EBMModel(EBMBase): ... class ExplainableBoostingClassifier(EBMModel, ClassifierMixin, ExplainerMixin): ... class ExplainableBoostingRegressor(EBMModel, RegressorMixin, ExplainerMixin):...
Thank you for your valuable feedback @paulbkoch. It's important to get the API right. Personally, I opt for keyword-only arguments and declaring the order of parameters an implementation detail. But...
Are you using Python3 or Python2? The monitor currently works only using Python2 as far as I know.