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

TrialComponentParameterValue

import type { TrialComponentParameterValue } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

The value of a hyperparameter. Only one of NumberValue or StringValue can be specified.

This object is specified in the "CreateTrialComponent" request.

interface TrialComponentParameterValue {
NumberValue?: number | null;
StringValue?: string | null;
}

§Properties

§
NumberValue?: number | null
[src]

The numeric value of a numeric hyperparameter. If you specify a value for this parameter, you can't specify the StringValue parameter.

§
StringValue?: string | null
[src]

The string value of a categorical hyperparameter. If you specify a value for this parameter, you can't specify the NumberValue parameter.