View Source GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Trial (google_api_machine_learning v0.28.1)

A message representing a trial.

Attributes

  • clientId (type: String.t, default: nil) - Output only. The identifier of the client that originally requested this trial.
  • endTime (type: DateTime.t, default: nil) - Output only. Time at which the trial's status changed to COMPLETED.
  • finalMeasurement (type: GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Measurement.t, default: nil) - The final measurement containing the objective value.
  • infeasibleReason (type: String.t, default: nil) - Output only. A human readable string describing why the trial is infeasible. This should only be set if trial_infeasible is true.
  • measurements (type: list(GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Measurement.t), default: nil) - A list of measurements that are strictly lexicographically ordered by their induced tuples (steps, elapsed_time). These are used for early stopping computations.
  • name (type: String.t, default: nil) - Output only. Name of the trial assigned by the service.
  • parameters (type: list(GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Trial_Parameter.t), default: nil) - The parameters of the trial.
  • startTime (type: DateTime.t, default: nil) - Output only. Time at which the trial was started.
  • state (type: String.t, default: nil) - The detailed state of a trial.
  • trialInfeasible (type: boolean(), default: nil) - Output only. If true, the parameters in this trial are not attempted again.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Trial{
  clientId: String.t() | nil,
  endTime: DateTime.t() | nil,
  finalMeasurement:
    GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Measurement.t() | nil,
  infeasibleReason: String.t() | nil,
  measurements:
    [GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Measurement.t()] | nil,
  name: String.t() | nil,
  parameters:
    [GoogleApi.MachineLearning.V1.Model.GoogleCloudMlV1_Trial_Parameter.t()]
    | nil,
  startTime: DateTime.t() | nil,
  state: String.t() | nil,
  trialInfeasible: boolean() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.