when i changed ExpandingMean, RollingMean from mlforecast with windows_ops options, it worked. not sure whether i made a mistake on how i implemented the nixtla version: i used just ExpendingMean (with no parameters) and then RollingMean(window_size=n)
j
José Morales
03/07/2024, 3:19 PM
Did you set ExpandingMean or ExpandingMean()? I think we just check if it's a callable and if you don't initialize the object it will go through the function path
j
jan rathfelder
03/08/2024, 6:49 AM
ok, thx. i will check next week
jan rathfelder
03/11/2024, 2:19 PM
@José Morales: you are right. using ExpandingMean() works when running from a python file. thanks