DerWeh

Results 27 issues of DerWeh

I am using `vim-asterisk` with `vim-plug`. I use the setting `g:asterisk#keeppos = 1` however it doesn't work until I manually source my config file.

Python focuses on indents for readability, thus I think the fold-text should respect the indent for readability. The indent based on the fold-level as we get here is in my...

question

I tried to install `interpret` as I want to contribute. However, following the instructions in https://interpret.ml/docs/installation-guide.html causes errors. It's probably some fault from my side, as I have no knowledge...

Sklearn's [HistGradientBoostingClassifier](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingClassifier.html) provides a `validation_score_` if a validation fraction is used, likewise the [RandomForestClassifier](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html) (optionally) provides an `oob_score_` if the corresponding argument is set. These values are very useful to...

Minimal example: ```python3 import mpmath import numpy as np print(mpmath.__version__) print(mpmath.fp.diff(np.exp, 0)) print(mpmath.fp.diff(np.exp, 0, method='quad')) # output: # 1.1.0 # 0.0 # (0.9999999999999988+1.3912230833030279e-16j) ``` The method `'quad'` works, while the...

Instead of checking for `defer` argument, check if a register was used.

I added wmvanvliet's [`wmvanvliet's run_cell`](https://github.com/wmvanvliet/vim-ipython) function, to emulate a cell mode. The collection of lines is implemented in python which should be faster. Please check if I adjusted the code...

This is a first proof of concept to use [pydantic](https://docs.pydantic.dev/latest/) for the validation of parameters. I used Python 3.10 syntax as it is more concise and used `pydantic=2.6.2` without putting...

While the EBMs are an incredible model, a main pain-point is that they are relatively slow to fit (compared to random forests). Bagging can easily be parallelized, while boosting is...

The implementation of `pade_lstsq` is incorrect, as the value of `fix_q` is ignored, see [lgtm](https://lgtm.com/projects/g/DerWeh/gftools/rev/pr-aff62894209556179736fd8f389178f19812e606). The current heuristic, however, doesn't pass the tests. Which parameter is fixed played a significant...