diff options
author | Linux-cpp-lisp <1473644+Linux-cpp-lisp@users.noreply.github.com> | 2021-11-17 15:57:44 -0500 |
---|---|---|
committer | Linux-cpp-lisp <1473644+Linux-cpp-lisp@users.noreply.github.com> | 2021-11-17 15:57:44 -0500 |
commit | ce73094b493c2fb12e113f1f729f7c876c447715 (patch) | |
tree | 2792a0826767fcdc5da3c48162c8379382dd0480 /torch_ema/__init__.py | |
parent | f658af9055647685c7713c36de4905f34e4d8508 (diff) |
Refactor and bump version
Diffstat (limited to 'torch_ema/__init__.py')
-rw-r--r-- | torch_ema/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/torch_ema/__init__.py b/torch_ema/__init__.py index 6cf180f..91c6bbf 100644 --- a/torch_ema/__init__.py +++ b/torch_ema/__init__.py @@ -1,3 +1,4 @@ +from ._version import __version__ from .ema import ExponentialMovingAverage -__all__ = [ExponentialMovingAverage] +__all__ = [__version__, ExponentialMovingAverage] |