SpeechToTextGetCustomWords Method |
Lists information about all custom words from a custom language model. You can list all words from the custom model's words resource, only custom words that were added or modified by the user, or only OOV words that were extracted from corpora. Only the owner of a custom model can use this method to query the words from the model.
Note: This method is currently a beta release that is available for US English only.
Namespace:
IBM.Watson.DeveloperCloud.Services.SpeechToText.v1
Assembly:
unity-documentation (in unity-documentation.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax public bool GetCustomWords(
SpeechToTextSuccessCallback<WordsList> successCallback,
SpeechToTextFailCallback failCallback,
string customizationID,
string wordType = "all",
Dictionary<string, Object> customData = null
)
Parameters
- successCallback
- Type: IBM.Watson.DeveloperCloud.Services.SpeechToText.v1SpeechToTextSuccessCallbackWordsList
The success callback. - failCallback
- Type: IBM.Watson.DeveloperCloud.Services.SpeechToText.v1SpeechToTextFailCallback
The fail callback. - customizationID
- Type: SystemString
The customization ID with words you would like to get. - wordType (Optional)
- Type: SystemString
The type of the word. - customData (Optional)
- Type: System.Collections.GenericDictionaryString, Object
Optional custom data.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.SpeechToText.GetCustomWords(IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.SpeechToText.SuccessCallback{IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.WordsList},IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.SpeechToText.FailCallback,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})"]
See Also