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

new_experiment.rb « mlflow « ml « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0979183985067f7db4a4728a8d1dccf19bc610c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module API
  module Entities
    module Ml
      module Mlflow
        class NewExperiment < Grape::Entity
          expose :experiment_id

          private

          def experiment_id
            object.iid.to_s
          end
        end
      end
    end
  end
end