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
Currently model etna.models.SARIMAXModel produces a lot of logs during fitting. We should give a possibility to disable it.
Proposal
Add parameter fit_params, that should accept Optional[Dict[str, Any]] = None and pass given parameters into fit in etna.models.sarimax._SARIMAXAdapter._get_fit_results.
Add in documentation that this parameter can be used to suppress logging. It can be done like this.
I don't think that this change of the signature can lead to breaking change.
Test cases
We should make sure that given parameters are passed into the model.
Additional context
No response
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
Currently model
etna.models.SARIMAXModel
produces a lot of logs during fitting. We should give a possibility to disable it.Proposal
Add parameter
fit_params
, that should acceptOptional[Dict[str, Any]] = None
and pass given parameters intofit
inetna.models.sarimax._SARIMAXAdapter._get_fit_results
.Add in documentation that this parameter can be used to suppress logging. It can be done like this.
I don't think that this change of the signature can lead to breaking change.
Test cases
We should make sure that given parameters are passed into the model.
Additional context
No response
The text was updated successfully, but these errors were encountered: