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

experiment.vue « components « experiment_tracking « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73cdfbc44b0ba0e29d7854912370a76fe5739c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<script>
import { GlTable } from '@gitlab/ui';
import IncubationAlert from './incubation_alert.vue';

export default {
  name: 'ShowMlExperiment',
  components: {
    GlTable,
    IncubationAlert,
  },
  inject: ['candidates', 'metricNames', 'paramNames'],
  computed: {
    fields() {
      return [...this.paramNames, ...this.metricNames];
    },
  },
};
</script>

<template>
  <div>
    <incubation-alert />

    <h3>
      {{ __('Experiment Candidates') }}
    </h3>

    <gl-table
      :fields="fields"
      :items="candidates"
      :empty-text="__('This Experiment has no logged Candidates')"
      show-empty
      class="gl-mt-0!"
    />
  </div>
</template>