ailiaSpeechOpenPostProcessFileW method

int ailiaSpeechOpenPostProcessFileW(
  1. Pointer<AILIASpeech> net,
  2. Pointer<WChar> encoder_path,
  3. Pointer<WChar> decoder_path,
  4. Pointer<WChar> source_path,
  5. Pointer<WChar> target_path,
  6. Pointer<Char> prefix,
  7. int post_process_type
)

~japanese @brief 後処理知に適用するAIモデルを指定します。(UTF16) @param net ネットワークオブジェクトポインタ @param encoder_path onnxファイルのパス名(UTF16) @param decoder_path onnxファイルのパス名(UTF16) @param source_path Tokenizerのmodelファイルのパス名(UTF16) @param target_path Tokenizerのmodelファイルのパス名(UTF16) @param prefix T5のprefix (UTF8)、FuguMTの場合はNULL @param post_process_type AILIA_SPEECH_POST_PROCESS_TYPE_* @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Set AI model for post process (UTF16) @param net A network instance pointer @param encoder_path The path name to the onnx file (UTF16) @param decoder_path The path name to the onnx file (UTF16) @param source_path The path name to the tokenizer model file (UTF16) @param target_path The path name to the tokenizer model file (UTF16) @param prefix The prefix of T5 (UTF8), NULL for FuguMT @param post_process_type AILIA_SPEECH_POST_PROCESS_TYPE_* @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaSpeechOpenPostProcessFileW(
  ffi.Pointer<AILIASpeech> net,
  ffi.Pointer<ffi.WChar> encoder_path,
  ffi.Pointer<ffi.WChar> decoder_path,
  ffi.Pointer<ffi.WChar> source_path,
  ffi.Pointer<ffi.WChar> target_path,
  ffi.Pointer<ffi.Char> prefix,
  int post_process_type,
) {
  return _ailiaSpeechOpenPostProcessFileW(
    net,
    encoder_path,
    decoder_path,
    source_path,
    target_path,
    prefix,
    post_process_type,
  );
}