Click or drag to resize

SpeechToTextCreateCustomization Method

Creates a new custom language model for a specified base language model. The custom language model can be used only with the base language model for which it is created. The new model is owned by the individual whose service credentials are used to create it. 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
C#
public bool CreateCustomization(
	SpeechToTextSuccessCallback<CustomizationID> successCallback,
	SpeechToTextFailCallback failCallback,
	string name,
	string base_model_name = "en-US_BroadbandModel",
	string description = null,
	Dictionary<string, Object> customData = null
)

Parameters

successCallback
Type: IBM.Watson.DeveloperCloud.Services.SpeechToText.v1SpeechToTextSuccessCallbackCustomizationID
The success callback.
failCallback
Type: IBM.Watson.DeveloperCloud.Services.SpeechToText.v1SpeechToTextFailCallback
The fail callback.
name
Type: SystemString
The custom model name.
base_model_name (Optional)
Type: SystemString
The base model name - only en-US_BroadbandModel is currently supported.
description (Optional)
Type: SystemString
Descripotion of the custom model.
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.CreateCustomization(IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.SpeechToText.SuccessCallback{IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.CustomizationID},IBM.Watson.DeveloperCloud.Services.SpeechToText.v1.SpeechToText.FailCallback,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})"]

See Also