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

GoogleCloudAiplatformV1StudySpecMetricSpecSafetyMetricConfig

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

Used in safe optimization to specify threshold levels and risk tolerance.

interface GoogleCloudAiplatformV1StudySpecMetricSpecSafetyMetricConfig {
desiredMinSafeTrialsFraction?: number;
safetyThreshold?: number;
}

§Properties

§
desiredMinSafeTrialsFraction?: number
[src]

Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.

§
safetyThreshold?: number
[src]

Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.