From 673c55c6836ee5ba732c53e9970da5fd856b5c96 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sun, 5 Nov 2023 19:43:04 +0200 Subject: [PATCH] whisper : print log when using distilled models --- whisper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/whisper.cpp b/whisper.cpp index 602d43b8..0e5930f9 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -4579,6 +4579,7 @@ int whisper_full_with_state( // distilled models require the "no_timestamps" token // TODO: add input parameter (#1229) if (is_distil) { + log("%s: using distilled model - forcing no_timestamps\n", __func__); prompt_init.push_back(whisper_token_not(ctx)); } }