2022-10-11 01:57:18 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module Ml
|
|
|
|
module Mlflow
|
|
|
|
class UpdateRun < Grape::Entity
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :itself, using: RunInfo, as: :run_info
|
2022-10-11 01:57:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|