mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-06-27 16:31:20 +08:00
5039dcf6ea
* 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>
12 lines
309 B
Python
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" |