Interface ValidationParamsRequest

ValidationParamsRequest

interface ValidationParamsRequest {
    frame_count?: number;
    frame_selection_method: FrameSelectionMethod;
    frame_share?: number;
    frames?: string[];
    frames_per_job_count?: number;
    frames_per_job_share?: number;
    mode: ValidationMode;
    random_seed?: number;
}

Properties

frame_count?: number

The number of frames to be included in the validation set. Applicable only to the "random_uniform" frame selection method

ValidationParamsRequest

frame_selection_method: FrameSelectionMethod

ValidationParamsRequest

frame_share?: number

The share of frames to be included in the validation set. Applicable only to the "random_uniform" frame selection method

ValidationParamsRequest

frames?: string[]

The list of file names to be included in the validation set. Applicable only to the "manual" frame selection method. Can only be used for images.

ValidationParamsRequest

frames_per_job_count?: number

The number of frames to be included in the validation set from each annotation job. Applicable only to the "random_per_job" frame selection method

ValidationParamsRequest

frames_per_job_share?: number

The share of frames to be included in the validation set from each annotation job. Applicable only to the "random_per_job" frame selection method

ValidationParamsRequest

ValidationParamsRequest

random_seed?: number

The seed value for the random number generator. The same value will produce the same frame sets. Applicable only to random frame selection methods. By default, a random value is used.

ValidationParamsRequest