8 lines
235 B
Python
8 lines
235 B
Python
"""
|
|
Time Series Forecasting Module with LSTM
|
|
|
|
This module provides a configurable PyTorch-based LSTM model for time series forecasting,
|
|
with support for feature engineering, cross-validation, and evaluation.
|
|
"""
|
|
|
|
__version__ = "0.1.0" |