Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better HF style imports #88

Merged
merged 3 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
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
62 changes: 62 additions & 0 deletions tsfm_public/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,66 @@
# Copyright contributors to the TSFM project
#

from pathlib import Path
from typing import TYPE_CHECKING

# Check the dependencies satisfy the minimal versions required.
from transformers.utils import _LazyModule, logging

from .version import __version__, __version_tuple__


logger = logging.get_logger(__name__) # pylint: disable=invalid-name

# Base objects, independent of any specific backend
_import_structure = {
"models": [],
"models.tinytimemixer": ["TINYTIMEMIXER_PRETRAINED_CONFIG_ARCHIVE_MAP", "TinyTimeMixerConfig"],
"toolkit": [
"TimeSeriesPreprocessor",
"TimeSeriesForecastingPipeline",
"ForecastDFDataset",
"PretrainDFDataset",
"RegressionDFDataset",
],
}


# PyTorch-backed objects
_import_structure["models.tinytimemixer"].extend(
[
"TINYTIMEMIXER_PRETRAINED_MODEL_ARCHIVE_LIST",
"TinyTimeMixerPreTrainedModel",
"TinyTimeMixerModel",
"TinyTimeMixerForPrediction",
]
)

# Direct imports for type-checking
if TYPE_CHECKING:
from .models.tinytimemixer import (
TINYTIMEMIXER_PRETRAINED_CONFIG_ARCHIVE_MAP,
TINYTIMEMIXER_PRETRAINED_MODEL_ARCHIVE_LIST,
TinyTimeMixerConfig,
TinyTimeMixerForPrediction,
TinyTimeMixerModel,
TinyTimeMixerPreTrainedModel,
)
from .toolkit import (
ForecastDFDataset,
PretrainDFDataset,
RegressionDFDataset,
TimeSeriesForecastingPipeline,
TimeSeriesPreprocessor,
)
else:
# Standard
import sys

sys.modules[__name__] = _LazyModule(
__name__,
globals()["__file__"],
_import_structure,
module_spec=__spec__,
extra_objects={"__version__": __version__},
)
4 changes: 4 additions & 0 deletions tsfm_public/toolkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Copyright contributors to the TSFM project
#

from .dataset import ForecastDFDataset, PretrainDFDataset, RegressionDFDataset
from .time_series_forecasting_pipeline import TimeSeriesForecastingPipeline
from .time_series_preprocessor import TimeSeriesPreprocessor
Loading