Files
pytorch-ts/pts/__init__.py
T
aslinagy 5039dcf6ea TFT fixes (#55)
* fixies for running tft

* fix test set configs

* added AgeFeature back to the pipeline

* fixing AgeFeature

* revert setups changes

Co-authored-by: alex sliz-nagy <alex.sliz.nagy@blackswan.com>
2021-06-08 13:23:22 +02:00

12 lines
309 B
Python

from pkgutil import extend_path
from pkg_resources import get_distribution, DistributionNotFound
from .trainer import Trainer
__path__ = extend_path(__path__, __name__) # type: ignore
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
__version__ = "0.0.0-unknown"