Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudMlV1__Trial

import type { GoogleCloudMlV1__Trial } from "https://googleapis.deno.dev/v1/ml:v1.ts";

A message representing a trial.

interface GoogleCloudMlV1__Trial {
readonly clientId?: string;
readonly endTime?: Date;
finalMeasurement?: GoogleCloudMlV1__Measurement;
readonly infeasibleReason?: string;
readonly name?: string;
readonly startTime?: Date;
state?:
| "STATE_UNSPECIFIED"
| "REQUESTED"
| "ACTIVE"
| "COMPLETED"
| "STOPPING";
readonly trialInfeasible?: boolean;
}

§Properties

§
readonly clientId?: string
[src]

Output only. The identifier of the client that originally requested this trial.

§
readonly endTime?: Date
[src]

Output only. Time at which the trial's status changed to COMPLETED.

§

The final measurement containing the objective value.

§
readonly infeasibleReason?: string
[src]

Output only. A human readable string describing why the trial is infeasible. This should only be set if trial_infeasible is true.

§

A list of measurements that are strictly lexicographically ordered by their induced tuples (steps, elapsed_time). These are used for early stopping computations.

§
readonly name?: string
[src]

Output only. Name of the trial assigned by the service.

§

The parameters of the trial.

§
readonly startTime?: Date
[src]

Output only. Time at which the trial was started.

§
state?: "STATE_UNSPECIFIED" | "REQUESTED" | "ACTIVE" | "COMPLETED" | "STOPPING"
[src]

The detailed state of a trial.

§
readonly trialInfeasible?: boolean
[src]

Output only. If true, the parameters in this trial are not attempted again.