IntelliBuddies Types for Cognitive Activities
This page describes all the Object types defined and used by Cognitive Activities.
SentimentSentence
It represents a sentence sentiment identified by cognitive services.
Properties
| Property | Type | Description |
|---|---|---|
| Sentence | String | Text of the entity. |
| Sentiment | String | Sentiment predicted for this sentence. It can be Positive, Negative, Neutral, or Mixed. |
| PositiveScore | Int32 | Score between 0 to 100, representing the confidence that the sentiment is positive. |
| NegativeScore | Int32 | Score between 0 to 100 represents the confidence that the sentiment is negative. |
| NeutralScore | Int32 | Score between 0 to 100, representing the confidence that the sentiment is neutral. |
| MixedScore | Int32 | Score between 0 to 100 represents the confidence that the sentiment is mixed. |
| Length | Int32 | Length of the sentence. |
| Offset | Int32 | Starting sentence position within the document text. |