2022-08-27 11:52:29 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ml
|
|
|
|
class Candidate < ApplicationRecord
|
2022-10-11 01:57:18 +05:30
|
|
|
enum status: { running: 0, scheduled: 1, finished: 2, failed: 3, killed: 4 }
|
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
validates :iid, :experiment, presence: true
|
2022-10-11 01:57:18 +05:30
|
|
|
validates :status, inclusion: { in: statuses.keys }
|
2022-08-27 11:52:29 +05:30
|
|
|
|
|
|
|
belongs_to :experiment, class_name: 'Ml::Experiment'
|
|
|
|
belongs_to :user
|
|
|
|
has_many :metrics, class_name: 'Ml::CandidateMetric'
|
|
|
|
has_many :params, class_name: 'Ml::CandidateParam'
|
2022-10-11 01:57:18 +05:30
|
|
|
|
|
|
|
default_value_for(:iid) { SecureRandom.uuid }
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def with_project_id_and_iid(project_id, iid)
|
|
|
|
return unless project_id.present? && iid.present?
|
|
|
|
|
|
|
|
joins(:experiment).find_by(experiment: { project_id: project_id }, iid: iid)
|
|
|
|
end
|
|
|
|
end
|
2022-08-27 11:52:29 +05:30
|
|
|
end
|
|
|
|
end
|