Skip to content

Commit 3a0964a

Browse files
committed
update documentation
1 parent 7c8e5e5 commit 3a0964a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/IBM.WatsonDeveloperCloud.SpeechToText/v1/ISpeechToTextService.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ SpeechRecognitionEvent RecognizeWithSession(string sessionId,
205205
/// <summary>
206206
/// 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.
207207
/// </summary>
208-
/// <param name="options"></param>
208+
/// <param name="model">The model name.</param>
209+
/// <param name="baseModelName">The name of the base model to use.</param>
210+
/// <param name="description">Description of the custom model.</param>
209211
/// <returns></returns>
210212
CustomizationID CreateCustomModel(string model, string baseModelName, string description);
211213

@@ -340,7 +342,7 @@ SpeechRecognitionEvent RecognizeWithSession(string sessionId,
340342
/// You can use the List custom words or List a custom word method to review the words that you add. Words with an invalid sounds_like field include an error field that describes the problem. If necessary, you can use the Add custom words or Add a custom word method to correct problems, eliminate typographical errors, and modify how words are pronounced.
341343
/// </summary>
342344
/// <param name="customizationId">The GUID of the custom language model to which words are to be added. You must make the request with the service credentials of the model's owner.</param>
343-
/// <param name="words">A comma-separated list of <see cref="Words">Words</see> objects, each of which provides information about a custom word to be added.</param>
345+
/// <param name="body">A comma-separated list of <see cref="Words">Words</see> objects, each of which provides information about a custom word to be added.</param>
344346
object AddCustomWords(string customizationId, Words body);
345347

346348
/// <summary>

src/IBM.WatsonDeveloperCloud.VisualRecognition/v3/IVisualRecognitionService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public interface IVisualRecognitionService
3838
/// <param name="imageData">A byte[] of image data.</param>
3939
/// <param name="imageName">The name for the image.</param>
4040
/// <param name="imageMimeType">The image's mimetype.</param>
41+
/// <param name="urls">An array of URLs to classify.</param>
4142
/// <param name="classifierIDs">An array of classifier IDs to classify the images against.</param>
4243
/// <param name="owners">An array with the value(s) "IBM" and/or "me" to specify which classifiers to run.</param>
4344
/// <param name="threshold">A floating value that specifies the minimum score a class must have to be displayed in the response.</param>

0 commit comments

Comments
 (0)