You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/IBM.WatsonDeveloperCloud.LanguageTranslator/v2/ILanguageTranslatorService.cs
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ public interface ILanguageTranslatorService
26
26
/// <summary>
27
27
/// Lists available models for the Language translator service with option to filter by source or by target language.
28
28
/// </summary>
29
-
/// <param name="isDefault">Valid values are leaving it unset, 'true' and 'false'. When 'true', it filters models to return the default model or models. When 'false' it returns the non-default model or models. If not set, all models (default and non-default) return.</param>
29
+
/// <param name="_isDefault">Valid values are leaving it unset, 'true' and 'false'. When 'true', it filters models to return the default model or models. When 'false' it returns the non-default model or models. If not set, all models (default and non-default) return.</param>
30
30
/// <param name="_source">Define with target. Filters models by source language.</param>
31
31
/// <param name="_target">Define with source. Filters models by target language.</param>
32
32
/// <returns></returns>
@@ -36,16 +36,14 @@ public interface ILanguageTranslatorService
36
36
/// Uploads a TMX glossary file on top of a domain to customize a translation model.
37
37
/// Depending on the size of the file, training can range from minutes for a glossary to several hours for a large parallel corpus. Glossary files must be less than 10 MB. The cumulative file size of all uploaded glossary and corpus files is limited to 250 MB.
38
38
/// </summary>
39
-
/// <param name="baseModelId">The base model to use to create the custom model.</param>
40
-
/// <param name="name">The name of the custom model.</param>
41
-
/// <param name="file">The file data used to create the custom model.</param>
39
+
/// <param name="_options">An object containing arguments used to create the custom model.</param>
0 commit comments