Taylor G Smith
Taylor G Smith
I started the [latex](https://github.com/tgsmith61591/smrt/tree/latex) branch for this. It's in doc/smrt.tex. Let's chip away at it... @jasonw247 if you add to it, make sure to branch from latex first. I'll do...
Thanks for taking the time to file an issue. I think you're right. Feel free to file a PR, if you like. We haven't been working on this project in...
The original SMOTE paper got its biggest performance boost by combining down-sampling with their method. I think it would absolutely be worth trying such a method. Things like: * Downsample...
pmdarima is now on manylinux_2_28 as well. Thank you!
Bump. Is this repository even maintained anymore?
Thanks for responding, @sodre I'll take a look 👍
@bkreider When we cut a release on Github, it triggers a Circle job that deploys to Pypi, which twine allows us to automate with ENV variables (we just store as...
@gadagashwini what's the point of a warning if the response is simply `you can safely ignore it.`? It's clearly there for a reason
Hi @clumdee thanks for the issue. This is an interesting one that I think comes down to the user's intent when calling `.fit_predict`. If the intention is to predict in-sample...
That's not how `auto_arima` works. When you provide `seasonal=True` and `m=12` (in your case) it tells `auto_arima` to [perform a seasonal differencing test](https://github.com/alkaline-ml/pmdarima/blob/v2.0.1/pmdarima/arima/auto.py#L506) for `D`: ```python if m == 1:...