Skip to content

Commit 5807267

Browse files
fix metric assert bug and update reqs
1 parent 6fafd97 commit 5807267

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

aide/utils/metric.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def __gt__(self, other) -> bool:
3838
return comp if self.maximize else not comp # type: ignore
3939

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

4443
def __repr__(self) -> str:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ hyperopt
6060
bayesian-optimization
6161
imagecodecs
6262
hmmlearn
63-
bayespy
63+
bayespy==0.5.1
6464
sklearn-pandas
6565
tensorpack
6666
sentencepiece

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="aideml",
11-
version="0.1.1",
11+
version="0.1.2",
1212
author="Weco AI",
1313
author_email="[email protected]",
1414
description="Autonomous AI for Data Science and Machine Learning",

0 commit comments

Comments
 (0)