Skip to content

Commit

Permalink
Fixes #224
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Dec 1, 2023
1 parent 20ecb46 commit b149fbc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/Serval.Client/Client.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,9 @@ public partial interface ITranslationEnginesClient
/// Incrementally train a translation engine with a segment pair
/// </summary>
/// <remarks>
/// What does `SentenceStart` do?
/// A segment pair consists of a source and target segment as well as a boolean flag `sentenceStart`
/// <br/>that should be set to true if this segment pair forms the beginning of a sentence. (This information
/// <br/>will be used to reconstruct proper capitalization when training/inferencing).
/// </remarks>
/// <param name="id">The translation engine id</param>
/// <param name="segmentPair">The segment pair</param>
Expand Down Expand Up @@ -2000,7 +2002,9 @@ public string BaseUrl
/// Incrementally train a translation engine with a segment pair
/// </summary>
/// <remarks>
/// What does `SentenceStart` do?
/// A segment pair consists of a source and target segment as well as a boolean flag `sentenceStart`
/// <br/>that should be set to true if this segment pair forms the beginning of a sentence. (This information
/// <br/>will be used to reconstruct proper capitalization when training/inferencing).
/// </remarks>
/// <param name="id">The translation engine id</param>
/// <param name="segmentPair">The segment pair</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,9 @@ CancellationToken cancellationToken
/// Incrementally train a translation engine with a segment pair
/// </summary>
/// <remarks>
/// What does `SentenceStart` do?
/// A segment pair consists of a source and target segment as well as a boolean flag `sentenceStart`
/// that should be set to true if this segment pair forms the beginning of a sentence. (This information
/// will be used to reconstruct proper capitalization when training/inferencing).
/// </remarks>
/// <param name="id">The translation engine id</param>
/// <param name="segmentPair">The segment pair</param>
Expand Down

0 comments on commit b149fbc

Please sign in to comment.