Christian Lorentzen
Christian Lorentzen
Currently, one can only set the number of threads for polars to use once at the start of polars (before `import polars`), see https://github.com/pola-rs/polars/issues/6157.
@charris I first wanted the CI to finish to prove that the test triggers a failure.
I'll have a quick look...
@seberg Why did you close?
Thinking about handling overflow in box-cox once more, maybe it is enough what we have right now and add more if users really need it - as opposed to adding...
Starting with an internal version of xmax with a careful default, e.g. 2**7, and mention it in the docstring makes sense to me. We should not over-engineer too early.
I would prefer to avoid introducing some hard coded tiny `EPS > 0`. As a user, if I specify `alpha=0`, I expect that to hold exactly. Therefore, improving documentation (and...
I‘m looking forward to review a PR.
This PR needs a what's new entry in `doc/whats_new/v1.1.rst`. I doubt that it will land in v1.1, but for the moment, we can place the entry there. This should render...
Would it be possible to achieve this proposed functionality with the current implementation? Something like ```python estimators = [ ("mnb1", ColumnTransformer([("mnb1", MultinomialNB(), [0, 1])])), ("mnb2", ColumnTransformer([("mnb2", MultinomialNB(), [3, 4])])), ("gnb1",...