UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

13 lines (12 loc) 440 B
import type { FrameSelectionMethod } from './frame-selection-method'; import type { ValidationMode } from './validation-mode'; export interface ValidationParamsRequest { 'mode': ValidationMode; 'frame_selection_method': FrameSelectionMethod; 'random_seed'?: number; 'frames'?: Array<string>; 'frame_count'?: number; 'frame_share'?: number; 'frames_per_job_count'?: number; 'frames_per_job_share'?: number; }