BuildIt.CognitiveServices.WebLanguageModelAPIExtensions.CalculateJointProbabilityAsync C# (CSharp) Метод

CalculateJointProbabilityAsync() публичный статический Метод

Calculate the joint probability that a particular sequence of words will appear together.
public static CalculateJointProbabilityAsync ( this operations, string model, double order = default(double?), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
operations this /// The operations group for this extension method. ///
model string /// Which model to use, supported value: title/anchor/query/body ///
order double /// The order of N-gram. If not specified, use default value 5 .Supported /// value: 1, 2, 3, 4, 5. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
cancellationToken System /// The cancellation token. ///
Результат System.Threading.Tasks.Task
            public static async System.Threading.Tasks.Task CalculateJointProbabilityAsync(this IWebLanguageModelAPI operations, string model, double? order = default(double?), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.CalculateJointProbabilityWithHttpMessagesAsync(model, order, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }