Interface AnalysisResult
public interface AnalysisResult
The analysis provided by the Smart Conversations machine learning engine(s). The contents of the
object are determined by the functionalities that are enabled for your solution.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AnalysisResult.Builder
builder()
Getting builderAn array that contains the image recognition analyses of the images identified in the corresponding messages.An array that contains the analyses of the intentions of, and entities within, the corresponding messages.An array that contains the analyses of the offenses of the corresponding messages.An array that contains the PII analysis of the corresponding messages.An array that contains the analyses of the sentiments of the corresponding messages.
-
Method Details
-
getMlSentimentResult
List<MachineLearningSentimentResult> getMlSentimentResult()An array that contains the analyses of the sentiments of the corresponding messages.- Returns:
- mlSentimentResult
-
getMlNluResult
List<MachineLearningNLUResult> getMlNluResult()An array that contains the analyses of the intentions of, and entities within, the corresponding messages.- Returns:
- mlNluResult
-
getMlImageRecognitionResult
List<MachineLearningImageRecognitionResult> getMlImageRecognitionResult()An array that contains the image recognition analyses of the images identified in the corresponding messages.- Returns:
- mlImageRecognitionResult
-
getMlPiiResult
List<MachineLearningPIIResult> getMlPiiResult()An array that contains the PII analysis of the corresponding messages.- Returns:
- mlPiiResult
-
getMlOffensiveAnalysisResult
List<OffensiveAnalysis> getMlOffensiveAnalysisResult()An array that contains the analyses of the offenses of the corresponding messages.- Returns:
- mlOffensiveAnalysisResult
-
builder
Getting builder- Returns:
- New Builder instance
-