2023-01-13 00:05:48 +05:30
|
|
|
- add_to_breadcrumbs _("Experiments"), project_ml_experiments_path(@project)
|
|
|
|
- breadcrumb_title @experiment.name
|
|
|
|
- page_title @experiment.name
|
2023-05-27 22:25:52 +05:30
|
|
|
- add_page_specific_style 'page_bundles/ml_experiment_tracking'
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
- items = candidates_table_items(@candidates)
|
|
|
|
- metrics = unique_logged_names(@candidates, &:latest_metrics)
|
|
|
|
- params = unique_logged_names(@candidates, &:params)
|
2023-04-23 21:23:45 +05:30
|
|
|
- page_info = formatted_page_info(@page_info)
|
2023-01-13 00:05:48 +05:30
|
|
|
|
|
|
|
.page-title-holder.d-flex.align-items-center
|
|
|
|
%h1.page-title.gl-font-size-h-display= @experiment.name
|
|
|
|
|
|
|
|
#js-show-ml-experiment{ data: {
|
|
|
|
candidates: items,
|
|
|
|
metrics: metrics,
|
2023-03-17 16:20:25 +05:30
|
|
|
params: params,
|
2023-04-23 21:23:45 +05:30
|
|
|
page_info: page_info
|
2023-03-17 16:20:25 +05:30
|
|
|
} }
|