Skip to content

Commit

Permalink
fix metric assert bug and update reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtdominik committed Apr 26, 2024
1 parent 6fafd97 commit 5807267
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion aide/utils/metric.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def __gt__(self, other) -> bool:
return comp if self.maximize else not comp # type: ignore

def __eq__(self, other: Any) -> bool:
assert type(self) is type(other)
return self.value == other.value

def __repr__(self) -> str:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ hyperopt
bayesian-optimization
imagecodecs
hmmlearn
bayespy
bayespy==0.5.1
sklearn-pandas
tensorpack
sentencepiece
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="aideml",
version="0.1.1",
version="0.1.2",
author="Weco AI",
author_email="[email protected]",
description="Autonomous AI for Data Science and Machine Learning",
Expand Down

0 comments on commit 5807267

Please sign in to comment.