MLOps run with no metrics with step results in failed display
What does this MR do and why?
MLOps run with no metrics with step results in failed display
Changelog: fixed
References
- Related to #517080 (closed)
MR acceptance checklist
Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
Screenshots or screen recordings
| Before | After |
|---|---|
![]() |
![]() |
How to set up and validate locally
- Go to any project, and "Analyze/Experiments".
- First create some experiments and runs as below on rails console
project = Project.find(34)
user = User.find_by_username('test4')
Ml::CreateModelService.new(project, "model_1", user).execute
m = ::Ml::Model.find_by(name: "model_1")
Ml::CreateCandidateService.new(m.default_experiment, {user: user}).execute
c = Ml::Candidate.last
c.metrics.create!(name: 'metric1', value: 0.3)
- Now go to "Analyze/Experiments" to see the list
Edited by Alper Akgun

