[ENH] add BaseSeriesTransformer - ExpSmoothingSeriesTransformer#2019
[ENH] add BaseSeriesTransformer - ExpSmoothingSeriesTransformer#2019TonyBagnall merged 8 commits intoaeon-toolkit:mainfrom
Conversation
Thank you for contributing to
|
625fa76 to
275fee4
Compare
TonyBagnall
left a comment
There was a problem hiding this comment.
good spot on the typo, but I would prefer this to be axis = 1 as it is our standard
59588fd to
0ed378d
Compare
TonyBagnall
left a comment
There was a problem hiding this comment.
LGTM, thanks for the changes
Reference Issues/PRs
What does this implement/fix? Explain your changes.
Does your contribution introduce a new dependency? If yes, which one?
Any other comments?
Paper: s_0 = t_0 and s_j = alpha * t_j + (1 - alpha) * t_j-1
Corrected: s_0 = t_0 and s_j = alpha * t_j + (1 - alpha) * s_j-1
PR checklist
For new estimators and functions
__maintainer__at the top of relevant files and want to be contacted regarding its maintenance. Unmaintained files may be removed. This is for the full file, and you should not add yourself if you are just making minor changes or do not want to help maintain its contents.For developers with write access