Commit
·
5807267
1
Parent(s):
6fafd97
fix metric assert bug and update reqs
Browse files- aide/utils/metric.py +0 -1
- requirements.txt +1 -1
- setup.py +1 -1
aide/utils/metric.py
CHANGED
@@ -38,7 +38,6 @@ class MetricValue(DataClassJsonMixin):
|
|
38 |
return comp if self.maximize else not comp # type: ignore
|
39 |
|
40 |
def __eq__(self, other: Any) -> bool:
|
41 |
-
assert type(self) is type(other)
|
42 |
return self.value == other.value
|
43 |
|
44 |
def __repr__(self) -> str:
|
|
|
38 |
return comp if self.maximize else not comp # type: ignore
|
39 |
|
40 |
def __eq__(self, other: Any) -> bool:
|
|
|
41 |
return self.value == other.value
|
42 |
|
43 |
def __repr__(self) -> str:
|
requirements.txt
CHANGED
@@ -60,7 +60,7 @@ hyperopt
|
|
60 |
bayesian-optimization
|
61 |
imagecodecs
|
62 |
hmmlearn
|
63 |
-
bayespy
|
64 |
sklearn-pandas
|
65 |
tensorpack
|
66 |
sentencepiece
|
|
|
60 |
bayesian-optimization
|
61 |
imagecodecs
|
62 |
hmmlearn
|
63 |
+
bayespy==0.5.1
|
64 |
sklearn-pandas
|
65 |
tensorpack
|
66 |
sentencepiece
|
setup.py
CHANGED
@@ -8,7 +8,7 @@ with open("requirements.txt", "r") as f:
|
|
8 |
|
9 |
setup(
|
10 |
name="aideml",
|
11 |
-
version="0.1.
|
12 |
author="Weco AI",
|
13 |
author_email="[email protected]",
|
14 |
description="Autonomous AI for Data Science and Machine Learning",
|
|
|
8 |
|
9 |
setup(
|
10 |
name="aideml",
|
11 |
+
version="0.1.2",
|
12 |
author="Weco AI",
|
13 |
author_email="[email protected]",
|
14 |
description="Autonomous AI for Data Science and Machine Learning",
|