Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « experiments « ml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85f3f85fd8babb85b244c5fa0971022bfbc20edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- add_to_breadcrumbs _("Experiments"), project_ml_experiments_path(@project)
- breadcrumb_title @experiment.name
- page_title @experiment.name
- add_page_specific_style 'page_bundles/ml_experiment_tracking'

- experiment = experiment_as_data(@experiment)
- items = candidates_table_items(@candidates, current_user)
- metrics = unique_logged_names(@candidates, &:latest_metrics)
- params = unique_logged_names(@candidates, &:params)
- page_info = formatted_page_info(@page_info)

#js-show-ml-experiment{ data: {
  experiment: experiment,
  candidates: items,
  metrics: metrics,
  params: params,
  page_info: page_info,
  empty_state_svg_path: image_path('illustrations/empty-state/empty-dag-md.svg'),
} }