Updated to the latest version of greykite 1.1.0 and encountered an error when using the SILVERKITE_TWO_STAGE model template.
MultistageForecastTemplate line 65 - AttributeError: can't set attribute 'constants'. You have @Property def constants, but you don't have @constants.setter — it does self.constants = ... a prohibited action.
MultistageForecastTemplate line 69 - constants() — you call it as a function, but constants is an instance (not a callable object). This will cause a TypeError: 'MultistageForecastTemplateConstants' object is not callable.
Updated to the latest version of greykite 1.1.0 and encountered an error when using the SILVERKITE_TWO_STAGE model template.
MultistageForecastTemplate line 65 -
AttributeError: can't set attribute 'constants'. You have @Property def constants, but you don't have @constants.setter — it does self.constants = ... a prohibited action.MultistageForecastTemplate line 69 - constants() — you call it as a function, but constants is an instance (not a callable object). This will cause a
TypeError: 'MultistageForecastTemplateConstants' object is not callable.