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: 2c3504397629565d9c49b0885cf13adabe5fd260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- add_to_breadcrumbs _("Experiments"), project_ml_experiments_path(@project)
- breadcrumb_title @experiment.name
- page_title @experiment.name
- items = candidates_table_items(@candidates)
- metrics = unique_logged_names(@candidates, &:latest_metrics)
- params = unique_logged_names(@candidates, &:params)

.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,
  params: params } }