Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pytorch_forecasting/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
"""
Datasets, etc. for timeseries data.
Utilities for time series dataset construction and preprocessing.

Handling timeseries data is not trivial. It requires special treatment.
This sub-package provides the necessary tools to abstracts the necessary work.
This subpackage provides dataset classes, normalization and encoding
utilities, and batching tools required to transform raw time series data
into model-ready PyTorch datasets.
"""

from pytorch_forecasting.data.encoders import (
Expand Down
Loading