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

10
__init__.py Normal file
View File

@ -0,0 +1,10 @@
"""
TSModel - Time Series Modeling Package
"""
__version__ = "0.1.0"
# 导入主要模块,方便外部使用
from .models import OLinear, RevIN
__all__ = ['OLinear', 'RevIN']