From 090b47edc2b0a896bbb4b7afc26d431723fb2b8f Mon Sep 17 00:00:00 2001 From: Bohan Zhang Date: Tue, 11 Oct 2022 16:29:30 +0800 Subject: [PATCH] 0.2.0 --- pyhts/__init__.py | 11 +++++------ setup.cfg | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pyhts/__init__.py b/pyhts/__init__.py index 2473888..71fb2cb 100644 --- a/pyhts/__init__.py +++ b/pyhts/__init__.py @@ -1,9 +1,10 @@ # Version of the pyhts package -__version__ = "0.1.5" +__version__ = "0.2.0" __all__ = [ "Hierarchy", - "Hts", + "TemporalHierarchy", + "TemporalHFModel", "BaseForecaster", "AutoArimaForecaster", "HFModel", @@ -18,18 +19,16 @@ "load_tourism" ] -from pyhts._hierarchy import Hierarchy +from pyhts._hierarchy import * from pyhts._forecaster import ( BaseForecaster, AutoArimaForecaster ) -from pyhts._HFModel import HFModel +from pyhts._HFModel import HFModel, TemporalHFModel from pyhts._reconciliation import mint -from pyhts._hts import Hts - from pyhts._accuracy import ( mae, mase, diff --git a/setup.cfg b/setup.cfg index c3f4857..11dbc15 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyhts -version = 0.1.5 +version = 0.2.0 description = A package for forecasting reconciliation. long_description_content_type = text/markdown long_description = file: README.md