whisper_full_get_token_p method

double whisper_full_get_token_p(
  1. Pointer<whisper_context> ctx,
  2. int i_segment,
  3. int i_token
)

Get the probability of the specified token in the specified segment

Implementation

double whisper_full_get_token_p(
  ffi.Pointer<whisper_context> ctx,
  int i_segment,
  int i_token,
) {
  return _whisper_full_get_token_p(
    ctx,
    i_segment,
    i_token,
  );
}