Summary
A set of TextAnalysis Activities that performs the following: Sentiment Analysis, Key Phrase Extraction and Entity Extraction
Overview
TextAnalysis Activities is created with Visual Studio and NuGet explorer. It includes the following three custom activities:
SentimentAnalysis Activity takes 3 inputs: ApiEndPoint, SubscriptionKey and Text. It outputs the sentiment score ranging from 0 to 100 for the text. The closer it is to 0, the more negative the sentiment; conversely, the higher the score, the more positive the sentiment.
Key Phrase Extraction Activity takes 3 inputs: ApiEndPoint, SubscriptionKey and Text. It outputs a list of key phrases (of type string).
Entity Extraction Activity takes 3 inputs: ApiEndPoint, SubscriptionKey and Text. It outputs a list of tuples that represents the Name, Type, SubType of the extracted entity. (List<Tuple<string, string, string>>)
Benefits