(bugfix) Make Experiments Overview Page Show Dates & Runs#1369
(bugfix) Make Experiments Overview Page Show Dates & Runs#1369vinayan3 wants to merge 1 commit intoG-Research:mainfrom
Conversation
|
@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 |
suprjinx
left a comment
There was a problem hiding this comment.
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
ExperimentNamesis empty it shouldn't be included in the query on the DB.