You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running the model training with model_type = ARIMA_PLUS and AUTO_ARIMA = false is needed to set the NON_SEASONAL_ORDER option. This option type is type STRUCT<p INT64, d INT64, q INT64>, but when I try to define as
'NON_SEASONAL_ORDER' : (1,0,1) i get the error:
Compilation Error in macro model_options (macros\materializations\model.sql)
'int object' has no attribute 'startswith'
When I try changing the value to a string or another type, the error change to:
Option NON_SEASONAL_ORDER value has type STRUCT<STRING, STRING, STRING> which cannot be coerced to expected type STRUCT<p INT64, d INT64, q INT64>; failed to set 'non_seasonal_order' in OPTIONS()
When I try with AUTO_ARIMA = true then 'NON_SEASONAL_ORDER' is not required and the model works correctly
Thank you
The text was updated successfully, but these errors were encountered:
While running the model training with model_type = ARIMA_PLUS and AUTO_ARIMA = false is needed to set the NON_SEASONAL_ORDER option. This option type is type STRUCT<p INT64, d INT64, q INT64>, but when I try to define as
'NON_SEASONAL_ORDER' : (1,0,1) i get the error:
Compilation Error in macro model_options (macros\materializations\model.sql)
'int object' has no attribute 'startswith'
When I try changing the value to a string or another type, the error change to:
Option NON_SEASONAL_ORDER value has type STRUCT<STRING, STRING, STRING> which cannot be coerced to expected type STRUCT<p INT64, d INT64, q INT64>; failed to set 'non_seasonal_order' in OPTIONS()
When I try with AUTO_ARIMA = true then 'NON_SEASONAL_ORDER' is not required and the model works correctly
Thank you
The text was updated successfully, but these errors were encountered: