modelName | The model name (or list name) in Demisto. |
hashSeed | Seed for the hash function, at the pre-process stage. |
emailSubject | Subject of the email. |
emailBody | Body of the email. |
emailBodyHTML | HTML body of the email. Only use this field if the emailBody argument is empty. |
topWordsLimit | Maximum number of positive/negative words to return for the model decision. Default is 20. |
wordThreshold | Threshold to determine word importance (range 0-1). Default is 0.05. |
modelStoreType | How the model is stored in Demisto. Can be "list" or "mlModel". Default is "list". |
minTextLength | Minimum number of characters for the prediction. |
labelProbabilityThreshold | The label probability threshold. Default is 0.8. |
confidenceThreshold | The confidence threshold. The model will provide predictions only if their confidence is above this threshold. |
returnError | Whether to return an error when there is no prediction. Default is "true". |
setIncidentFields | Whether to set Demisto out-of-the-box DBot fields. |
language | The language of the input text. Default is "Any". Can be "Any", "English", "German", "French", "Spanish", "Portuguese", "Italian", "Dutch", or "Other". If "Any" or "Other" is selected, the script preprocess the entire input, no matter what its acutual language is. If a specific language is selected, the script filters out any other language from the output text. |
tokenizationMethod | Tokenization method for text. Only required when the language argument is set to "Other". Can be "tokenizer", "byWords", or "byLetters". |