whisper : handle empty sequence ranking

pull/291/head
Georgi Gerganov 3 years ago
parent 7ea1b736ec
commit c6a8a47039
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

@ -3094,7 +3094,9 @@ static whisper_token_data whisper_sample_token(
static void whisper_sequence_score( static void whisper_sequence_score(
const struct whisper_full_params & params, const struct whisper_full_params & params,
whisper_sequence & sequence) { whisper_sequence & sequence) {
WHISPER_ASSERT(sequence.result_len > 0); if (sequence.result_len == 0) {
return;
}
double result = 0.0f; double result = 0.0f;

Loading…
Cancel
Save