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

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
from setuptools import setup, find_packages
setup(
name="tsmodel",
version="0.1.0",
packages=find_packages(),
install_requires=[
# 添加你的依赖包
"numpy",
"torch",
# 其他依赖...
],
author="Gameloader",
description="Time Series Modeling Package",
python_requires=">=3.10",
)