-
Notifications
You must be signed in to change notification settings - Fork 1
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
Compare Experiments across different runs and hyper paramerters #23
base: main
Are you sure you want to change the base?
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.
Minor comments, but I would like for get_metrics
to use a list of string here
} | ||
history = {} | ||
|
||
for id in run_id.split("--"): |
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.
Why not send a list of run ids?
backgroundColor: colors.primary[400], | ||
}); | ||
useEffect(() => { | ||
if (!isLoading && !isError && data && data.plots && data.plots.length > 0) { |
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.
if (!isLoading && !isError && data && data.plots && data.plots.length > 0) { | |
if (!isLoading && !isError && data?.plots?.length > 0) { |
@@ -38,6 +38,26 @@ | |||
) | |||
|
|||
|
|||
@app.get("/experimentsflat") | |||
def get_experimentsflat() -> List[Dict[str, Any]]: |
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 think we need a type for the response.
Overview:
Instead of selecting experiments from dropdown, we now have table for selection. The table provides filters and other extra stuff for choosing specific experiments
Initial Landing Page
Filter
Select Multiple Experiments and switch among metrics using a carousel
CSS and code formatting
Upgrade precommit yaml using
pre-commit autoupdate
due to poetry having issues with PyCQA/isort@0d219a6Closes #19