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

ExperimentConfig

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

Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:

  • "CreateProcessingJob"
  • "CreateTrainingJob"
  • "CreateTransformJob"
interface ExperimentConfig {
ExperimentName?: string | null;
RunName?: string | null;
TrialComponentDisplayName?: string | null;
TrialName?: string | null;
}

§Properties

§
ExperimentName?: string | null
[src]

The name of an existing experiment to associate with the trial component.

§
RunName?: string | null
[src]

The name of the experiment run to associate with the trial component.

§
TrialComponentDisplayName?: string | null
[src]

The display name for the trial component. If this key isn't specified, the display name is the trial component name.

§
TrialName?: string | null
[src]

The name of an existing trial to associate the trial component with. If not specified, a new trial is created.