Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelPone committed Oct 11, 2022
1 parent 0af7766 commit 090b47e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions pyhts/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 090b47e

Please sign in to comment.