TextAnalyticsClient.AnalyzeSentimentBatch Method

Definition

Overloads

AnalyzeSentimentBatch(IEnumerable<String>, String, AnalyzeSentimentOptions, CancellationToken)

Runs a predictive model to identify the positive, negative or neutral sentiment contained in the documents, as well as scores indicating the model's confidence in each of the predicted sentiments.

For a list of languages supported by this operation, see https://aka.ms/talangs.

For document length limits, maximum batch size, and supported text encoding, see https://aka.ms/azsdk/textanalytics/data-limits.

AnalyzeSentimentBatch(IEnumerable<TextDocumentInput>, AnalyzeSentimentOptions, CancellationToken)

Runs a predictive model to identify the positive, negative or neutral sentiment contained in the documents, as well as scores indicating the model's confidence in each of the predicted sentiments.

For a list of languages supported by this operation, see https://aka.ms/talangs.

For document length limits, maximum batch size, and supported text encoding, see https://aka.ms/azsdk/textanalytics/data-limits.

AnalyzeSentimentBatch(IEnumerable<String>, String, AnalyzeSentimentOptions, CancellationToken)

Source:
TextAnalyticsClient.cs

Runs a predictive model to identify the positive, negative or neutral sentiment contained in the documents, as well as scores indicating the model's confidence in each of the predicted sentiments.

For a list of languages supported by this operation, see https://aka.ms/talangs.

For document length limits, maximum batch size, and supported text encoding, see https://aka.ms/azsdk/textanalytics/data-limits.

public virtual Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection> AnalyzeSentimentBatch (System.Collections.Generic.IEnumerable<string> documents, string language = default, Azure.AI.TextAnalytics.AnalyzeSentimentOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member AnalyzeSentimentBatch : seq<string> * string * Azure.AI.TextAnalytics.AnalyzeSentimentOptions * System.Threading.CancellationToken -> Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection>
override this.AnalyzeSentimentBatch : seq<string> * string * Azure.AI.TextAnalytics.AnalyzeSentimentOptions * System.Threading.CancellationToken -> Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection>
Public Overridable Function AnalyzeSentimentBatch (documents As IEnumerable(Of String), Optional language As String = Nothing, Optional options As AnalyzeSentimentOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of AnalyzeSentimentResultCollection)

Parameters

documents
IEnumerable<String>

The documents to analyze.

language
String

The language that all of the documents are written in. If unspecified, this value will be set to the default language in DefaultLanguage in the request sent to the service. If set to an empty string, the service will apply a model where the language is explicitly set to "None".

options
AnalyzeSentimentOptions

The additional configurable AnalyzeSentimentOptions that may be passed when analyzing sentiments. Options include Opinion mining, model version, and more.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

A result containing sentiment predictions for each of the documents and predictions for each of the sentences each document contains.

Exceptions

IncludeOpinionMining and DisableServiceLogs are only supported in service API version v3.1 and newer.

Service returned a non-success status code.

Applies to

AnalyzeSentimentBatch(IEnumerable<TextDocumentInput>, AnalyzeSentimentOptions, CancellationToken)

Source:
TextAnalyticsClient.cs

Runs a predictive model to identify the positive, negative or neutral sentiment contained in the documents, as well as scores indicating the model's confidence in each of the predicted sentiments.

For a list of languages supported by this operation, see https://aka.ms/talangs.

For document length limits, maximum batch size, and supported text encoding, see https://aka.ms/azsdk/textanalytics/data-limits.

public virtual Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection> AnalyzeSentimentBatch (System.Collections.Generic.IEnumerable<Azure.AI.TextAnalytics.TextDocumentInput> documents, Azure.AI.TextAnalytics.AnalyzeSentimentOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member AnalyzeSentimentBatch : seq<Azure.AI.TextAnalytics.TextDocumentInput> * Azure.AI.TextAnalytics.AnalyzeSentimentOptions * System.Threading.CancellationToken -> Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection>
override this.AnalyzeSentimentBatch : seq<Azure.AI.TextAnalytics.TextDocumentInput> * Azure.AI.TextAnalytics.AnalyzeSentimentOptions * System.Threading.CancellationToken -> Azure.Response<Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection>
Public Overridable Function AnalyzeSentimentBatch (documents As IEnumerable(Of TextDocumentInput), Optional options As AnalyzeSentimentOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of AnalyzeSentimentResultCollection)

Parameters

documents
IEnumerable<TextDocumentInput>

The documents to analyze.

options
AnalyzeSentimentOptions

The additional configurable AnalyzeSentimentOptions that may be passed when analyzing sentiments. Options include Opinion mining, model version, and more.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

A result containing sentiment predictions for each of the documents and predictions for each of the sentences each document contains.

Exceptions

IncludeOpinionMining and DisableServiceLogs are only supported in service API version v3.1 and newer.

Service returned a non-success status code.

Applies to