-
Notifications
You must be signed in to change notification settings - Fork 6
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
Visualizations post ChiRho #469
Conversation
… Visualization tests depend on new version.
Histogram picks up label from series (if present)
Visual refinements for reference points (larger marker, dotted connector). Multi-point example trace added.
pyciemss_results["parameters"][name] = ( | ||
sample.data.detach().cpu().numpy().astype(np.float64) | ||
) | ||
else: | ||
name = name + "_state" | ||
name = name + "_state" if not (name.endswith("_state")) else name |
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.
Nice! I was going to look into why _state
was being repeated twice, but this addressed it.
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.
A whole bunch fiddly little things in this world.
I had another one that didn't append _state
if it was an _observable
but that wasn't obviously the right thing to do (it made labels look a little better which is why I did it) AND broke other tests so I changed that back. Something to consider in the future.
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.
Reviewed together. Thanks!
Re-instating the visualization tools.
Includes an overhaul of the visualization tests: