Search Results for

    Show / Hide Table of Contents

    Interface ITranslationModelDataService

    Namespace: Sdl.Core.FineGrainedAlignment
    Assembly: Sdl.Core.FineGrainedAlignment.dll
    Syntax
    public interface ITranslationModelDataService

    Methods

    GetAllModelDetailsAsync()

    Declaration
    Task<TranslationModelDetails[]> GetAllModelDetailsAsync()
    Returns
    Type Description
    System.Threading.Tasks.Task<TranslationModelDetails[]>

    GetModelDetailsAsync(TranslationModelId)

    Declaration
    Task<TranslationModelDetails> GetModelDetailsAsync(TranslationModelId modelId)
    Parameters
    Type Name Description
    TranslationModelId modelId
    Returns
    Type Description
    System.Threading.Tasks.Task<TranslationModelDetails>

    LoadMatrixDataAsync(TranslationModelId, HashSet<Int32>, HashSet<Int32>, Boolean)

    Declaration
    Task<List<TranslationModelMatrixEntry>> LoadMatrixDataAsync(TranslationModelId modelId, HashSet<int> sourceKeys, HashSet<int> targetKeys, bool isReversedMatrix)
    Parameters
    Type Name Description
    TranslationModelId modelId
    System.Collections.Generic.HashSet<System.Int32> sourceKeys
    System.Collections.Generic.HashSet<System.Int32> targetKeys
    System.Boolean isReversedMatrix
    Returns
    Type Description
    System.Threading.Tasks.Task<System.Collections.Generic.List<TranslationModelMatrixEntry>>

    LoadMatrixDataAsync(TranslationModelId, Int32, Int32, Boolean)

    Declaration
    Task<(List<TranslationModelMatrixEntry>, int)> LoadMatrixDataAsync(TranslationModelId modelId, int startAfter, int count, bool isReversedMatrix)
    Parameters
    Type Name Description
    TranslationModelId modelId
    System.Int32 startAfter
    System.Int32 count
    System.Boolean isReversedMatrix
    Returns
    Type Description
    System.Threading.Tasks.Task<System.ValueTuple<System.Collections.Generic.List<TranslationModelMatrixEntry>, System.Int32>>

    LoadVocabAsync(TranslationModelId, Boolean, IEnumerable<String>)

    Declaration
    Task<List<TranslationModelVocabEntry>> LoadVocabAsync(TranslationModelId modelId, bool target, IEnumerable<string> tokensToLoad)
    Parameters
    Type Name Description
    TranslationModelId modelId
    System.Boolean target
    System.Collections.Generic.IEnumerable<System.String> tokensToLoad
    Returns
    Type Description
    System.Threading.Tasks.Task<System.Collections.Generic.List<TranslationModelVocabEntry>>

    TotalVocabSizeAsync(TranslationModelId, Boolean)

    Declaration
    Task<int> TotalVocabSizeAsync(TranslationModelId modelId, bool target)
    Parameters
    Type Name Description
    TranslationModelId modelId
    System.Boolean target
    Returns
    Type Description
    System.Threading.Tasks.Task<System.Int32>

    On this page

    Back to top Generated by DocFX