-
Notifications
You must be signed in to change notification settings - Fork 20
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
(bugfix) Make Experiments Overview Page Show Dates & Runs #1369
base: main
Are you sure you want to change the base?
(bugfix) Make Experiments Overview Page Show Dates & Runs #1369
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.
@vinayan3 It seems however that some of the Go tests related to Run Searching are failing ATM. Let's make sure that those are passing first 😃 |
@jescalada so I'll need to change the test |
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.
Great idea -- but I think we need to limit runs returned when no experiment names are provided. Additionally, I think SearchRuns
should always require the experiment selection -- maybe a new repository function for use in the overview which returns most recent runs?
Could a solution here to be add a limit field to the API request and make experiment names or limit required? Otherwise, I'm fine with adding a new request for the overview call. |
@vinayan3 -- I think maybe we should keep your changes for But we need it to issue one like this: So we would just alter the |
9d7b17b
to
02d5db1
Compare
I'll have to work through hitting a new endpoint in the UI later this week. |
Cool thank you! I think it's not even a new endpoint, just changing the param structure in the ajax request (from |
Date fix
The server is sending data in camel case which causes the experiment overview page to show invalid date instead of the actual date. The expected data type is here: https://github.com/G-Research/fasttrackml-ui-aim/blob/release/v3.17.5/src/src/modules/core/api/experimentsApi/types.ts#L84-L90
Before the change
After the change
Runs fix
When you click the runs tab it make an API call to the AIM end points for
GET /runs/search/run
. The UI's code sets the experiment as a query see:https://github.com/G-Research/fasttrackml-ui-aim/blob/release/v3.17.5/src/src/pages/Experiment/components/ExperimentRunsTab/ExperimentRunsTable/useExperimentRunsTable.tsx#L224-L228
If
ExperimentNames
is empty it shouldn't be included in the query on the DB.