ailiaVoiceSetSampleSteps method

int ailiaVoiceSetSampleSteps(
  1. Pointer<AILIAVoice> net,
  2. int steps
)

~japanese @brief GPT-SoVITS v3のCFMサンプリングステップ数を設定します。 @param net ボイスオブジェクトポインタ @param steps CFMのEuler ODEステップ数(デフォルト4) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Set the number of CFM sampling steps for GPT-SoVITS v3. @param net A Voice instance pointer @param steps Number of Euler ODE steps for CFM (default 4) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaVoiceSetSampleSteps(
  ffi.Pointer<AILIAVoice> net,
  int steps,
) {
  return _ailiaVoiceSetSampleSteps(
    net,
    steps,
  );
}