/** * API Gateway * This is an API Gateway server. * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import * as models from './models'; export interface ModelTrainingSpec { args?: Array; /** * Input data for a training */ data?: Array; /** * Model training file. It can be python\\bash script or jupiter notebook */ entrypoint?: string; /** * Custom environment variables that should be set before entrypoint invocation. */ envs?: Array; /** * Model training hyperParameters in parameter:value format */ hyperParameters?: any; /** * Train image */ image?: string; /** * Model Identity */ model?: models.ModelIdentity; /** * VCS Reference */ reference?: string; /** * Resources for model container The same format like k8s uses for pod resources. */ resources?: models.ResourceRequirements; /** * IntegrationName of toolchain */ toolchain?: string; /** * Name of Connection resource. Must exists */ vcsName?: string; /** * Directory with model scripts/files in a git repository */ workDir?: string; }