Skip to content

Commit

Permalink
Merge pull request #88 from ibm-granite/import_structure
Browse files Browse the repository at this point in the history
Better HF style imports
  • Loading branch information
wgifford authored Jul 25, 2024
2 parents c6f0fc6 + c9e1337 commit e8e8a22
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
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

0 comments on commit e8e8a22

Please sign in to comment.