feat(core): add initial TSModel package with OLinear and RevIN

This commit is contained in:
gameloader
2025-07-01 21:00:23 +08:00
commit dc8c9f1f09
8 changed files with 335 additions and 0 deletions

8
models/__init__.py Normal file
View File

@ -0,0 +1,8 @@
"""
Models module for time series forecasting
"""
from . import OLinear
from . import RevIN
__all__ = ['OLinear', 'RevIN']