Skip to content

Commit

Permalink
add __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczmarj committed Sep 6, 2024
1 parent c9b35c8 commit bc031bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hippo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
from hippo.models.abmil import AttentionMILModel
from hippo.search import greedy_search, maximize, minimize, smallest_difference

try:
from hippo._version import __version__
except ImportError:
__version__ = "0+unknown"

__all__ = ["AttentionMILModel", "greedy_search", "maximize", "minimize", "smallest_difference"]

0 comments on commit bc031bc

Please sign in to comment.