You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
nimbusml\base_predictor.py in summary(self)
140 Returns model summary.
141 """
--> 142 if hasattr(self, 'model_summary_') and self.model_summary_:
143 return self.model_summary_
144
pandas\core\generic.py in __nonzero__(self)
1574 raise ValueError("The truth value of a {0} is ambiguous. "
1575 "Use a.empty, a.bool(), a.item(), a.any() or a.all()."
-> 1576 .format(self.__class__.__name__))
1577
1578 __bool__ = __nonzero__
Describe the bug
summary() fails if called a second time.
To Reproduce
produces the following error:
Desktop