debian-mirror-gitlab/lib/api/entities/ml/mlflow/metric.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
315 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class Metric < Grape::Entity
expose :name, as: :key
expose :value
expose :tracked_at, as: :timestamp
expose :step, expose_nil: false
end
end
end
end
end