Batch Deployment Args
data class BatchDeploymentArgs(val codeConfiguration: Output<CodeConfigurationArgs>? = null, val compute: Output<ComputeConfigurationArgs>? = null, val description: Output<String>? = null, val environmentId: Output<String>? = null, val environmentVariables: Output<Map<String, String>>? = null, val errorThreshold: Output<Int>? = null, val loggingLevel: Output<Either<String, BatchLoggingLevel>>? = null, val miniBatchSize: Output<Double>? = null, val model: Output<Any>? = null, val outputConfiguration: Output<BatchOutputConfigurationArgs>? = null, val partitionKeys: Output<List<String>>? = null, val properties: Output<Map<String, String>>? = null, val retrySettings: Output<BatchRetrySettingsArgs>? = null) : ConvertibleToJava<BatchDeploymentArgs>
Batch inference settings per deployment.
Constructors
Link copied to clipboard
fun BatchDeploymentArgs(codeConfiguration: Output<CodeConfigurationArgs>? = null, compute: Output<ComputeConfigurationArgs>? = null, description: Output<String>? = null, environmentId: Output<String>? = null, environmentVariables: Output<Map<String, String>>? = null, errorThreshold: Output<Int>? = null, loggingLevel: Output<Either<String, BatchLoggingLevel>>? = null, miniBatchSize: Output<Double>? = null, model: Output<Any>? = null, outputConfiguration: Output<BatchOutputConfigurationArgs>? = null, partitionKeys: Output<List<String>>? = null, properties: Output<Map<String, String>>? = null, retrySettings: Output<BatchRetrySettingsArgs>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Error threshold, if the error count for the entire input goes above this value, the batch inference will be aborted. Range is -1, int.MaxValue. For FileDataset, this value is the count of file failures. For TabularDataset, this value is the count of record failures. If set to -1 (the lower bound), all failures during batch inference will be ignored.
Link copied to clipboard