DocumentClassifierInputDataConfig

data class DocumentClassifierInputDataConfig(val augmentedManifests: List<DocumentClassifierInputDataConfigAugmentedManifest>? = null, val dataFormat: String? = null, val labelDelimiter: String? = null, val s3Uri: String? = null, val testS3Uri: String? = null)

Constructors

Link copied to clipboard
constructor(augmentedManifests: List<DocumentClassifierInputDataConfigAugmentedManifest>? = null, dataFormat: String? = null, labelDelimiter: String? = null, s3Uri: String? = null, testS3Uri: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of training datasets produced by Amazon SageMaker Ground Truth. Used if data_format is AUGMENTED_MANIFEST. See the augmented_manifests Configuration Block section below.

Link copied to clipboard
val dataFormat: String? = null

The format for the training data. One of COMPREHEND_CSV or AUGMENTED_MANIFEST.

Link copied to clipboard
val labelDelimiter: String? = null

Delimiter between labels when training a multi-label classifier. Valid values are |, ~, !, @, #, $, %, ^, *, -, _, +, =, \, :, ;, >, ?, /, <space>, and <tab>. Default is |.

Link copied to clipboard
val s3Uri: String? = null

Location of training documents. Used if data_format is COMPREHEND_CSV.

Link copied to clipboard
val testS3Uri: String? = null