TextNerResponse

data class TextNerResponse(val featurizationSettings: NlpVerticalFeaturizationSettingsResponse? = null, val limitSettings: NlpVerticalLimitSettingsResponse? = null, val logVerbosity: String? = null, val primaryMetric: String, val targetColumnName: String? = null, val taskType: String, val trainingData: MLTableJobInputResponse, val validationData: MLTableJobInputResponse? = null)

Text-NER task in AutoML NLP vertical. NER - Named Entity Recognition. NLP - Natural Language Processing.

Constructors

Link copied to clipboard
constructor(featurizationSettings: NlpVerticalFeaturizationSettingsResponse? = null, limitSettings: NlpVerticalLimitSettingsResponse? = null, logVerbosity: String? = null, primaryMetric: String, targetColumnName: String? = null, taskType: String, trainingData: MLTableJobInputResponse, validationData: MLTableJobInputResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Featurization inputs needed for AutoML job.

Link copied to clipboard

Execution constraints for AutoMLJob.

Link copied to clipboard
val logVerbosity: String? = null

Log verbosity for the job.

Link copied to clipboard

Primary metric for Text-NER task. Only 'Accuracy' is supported for Text-NER, so user need not set this explicitly.

Link copied to clipboard

Target column name: This is prediction values column. Also known as label column name in context of classification tasks.

Link copied to clipboard

AutoMLJob Task type. Expected value is 'TextNER'.

Link copied to clipboard

Required Training data input.

Link copied to clipboard

Validation data inputs.