你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IntentsSuggestionExample 构造函数

定义

重载

IntentsSuggestionExample()
IntentsSuggestionExample(String, IList<String>, IList<IntentPrediction>, IList<EntityPrediction>)

IntentsSuggestionExample()

Source:
IntentsSuggestionExample.cs
Source:
IntentsSuggestionExample.cs
public IntentsSuggestionExample ();
Public Sub New ()

适用于

IntentsSuggestionExample(String, IList<String>, IList<IntentPrediction>, IList<EntityPrediction>)

Source:
IntentsSuggestionExample.cs
Source:
IntentsSuggestionExample.cs
public IntentsSuggestionExample (string text = default, System.Collections.Generic.IList<string> tokenizedText = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.IntentPrediction> intentPredictions = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.EntityPrediction> entityPredictions = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.IntentsSuggestionExample : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.IntentPrediction> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.EntityPrediction> -> Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.IntentsSuggestionExample
Public Sub New (Optional text As String = Nothing, Optional tokenizedText As IList(Of String) = Nothing, Optional intentPredictions As IList(Of IntentPrediction) = Nothing, Optional entityPredictions As IList(Of EntityPrediction) = Nothing)

参数

text
String
tokenizedText
IList<String>
intentPredictions
IList<IntentPrediction>
entityPredictions
IList<EntityPrediction>

适用于