-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure Comparer / ComparerCollection consistency #330
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments
@@ -458,7 +485,8 @@ def __repr__(self): | |||
f"Observation: {self.name}, n_points={self.n_points}", | |||
] | |||
for model in self.mod_names: | |||
out.append(f" Model: {model}, rmse={self.sel(model=model).score():.3f}") | |||
out.append(f" Model: {model}, rmse={self.score()[model]:.3f}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is potentially a performance hit here, and maybe we should only do this if n_points < 10^5 or similar? (we don't want repr to be slow)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or not at all?
No description provided.