MBristle

Results 3 issues of MBristle

#### Reference Issues/PRs AutoTS Adapter #5406 #### What does this implement/fix? Explain your changes. The implementation drafts an adapter for AutoTS. It sets defaults and wraps common functionality. #### Does...

interfacing algorithms
module:forecasting
enhancement

#### Reference Issues/PRs #### What does this implement/fix? Explain your changes. Partial fix of #5915 must also be fixed in skbase. Added a try catch block for ValueErrors and in...

module:tests
bugfix

**Describe the bug** Comparing a ForecastingHorizon using the deep_equals with different lengths results in an error. **To Reproduce** ```python (Pdb) deep_equals(ForecastingHorizon([1,2,3,4]),ForecastingHorizon([1,2,3,4])) True (Pdb) deep_equals(ForecastingHorizon([1,2,3,4]),ForecastingHorizon([1,2,3,44])) False (Pdb) deep_equals(ForecastingHorizon([1,2,3,4]),ForecastingHorizon([1,2,3])) *** ValueError: Lengths...

bug
module:forecasting
module:base-framework