-
Notifications
You must be signed in to change notification settings - Fork 191
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
Some improvement in Study and related widgets #2128
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.
Just reviewing the docstring :)
Co-authored-by: Zach McKenzie <[email protected]>
@alejoe91 ready to merge on my side. |
for more information, see https://pre-commit.ci
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.
sorry one more set of reviews for the docstrings on my side. + one question.
@@ -140,16 +134,18 @@ class StudyPerformances(BaseWidget): | |||
study: GroundTruthStudy | |||
A study object. | |||
mode: str | |||
Which mode in "swarm" | |||
Which mode in "ordered", "snr", "swarm" |
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.
I don't know what 'swarm' is... Is this common knowledge or would it be beneficial to define this? How would a user know when to use 'ordered' vs 'snr' vs 'swarm'....
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.
@zm711 I think it's quite common, but we can ref the seaborn page: https://seaborn.pydata.org/generated/seaborn.swarmplot.html
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.
Cool thanks. Sounds good!
Co-authored-by: Zach McKenzie <[email protected]>
Co-authored-by: Zach McKenzie <[email protected]>
Co-authored-by: Zach McKenzie <[email protected]>
Co-authored-by: Zach McKenzie <[email protected]>
Which plot mode to use: | ||
|
||
* "ordered": plot performance metrics vs unit indices ordered by decreasing accuracy (default) | ||
* "snr": plot performance metrics vs snr | ||
* "swarm": plot performance metrics as a swarm plot (see seaborn.swarmplot for details) |
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.
Thanks That's super helpful @alejoe91
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.
@samuelgarcia we'll need more checks at some point to know if different study steps have run. Also removed some debug plots in the merge.py that were active by default!
No description provided.