From 3e82ff47474e6d83894cdf8ad3daa128bfa6c256 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 29 Apr 2023 10:42:14 +0300 Subject: [PATCH] whisper : fix bug from previous commit --- whisper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whisper.cpp b/whisper.cpp index 820c48be..583f2d8e 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -2609,6 +2609,8 @@ struct whisper_context * whisper_init_from_file_no_state(const char * path_model whisper_model_loader loader = {}; + loader.context = &fin; + loader.read = [](void * ctx, void * output, size_t read_size) { std::ifstream * fin = (std::ifstream*)ctx; fin->read((char *)output, read_size); @@ -2647,8 +2649,6 @@ struct whisper_context * whisper_init_from_buffer_no_state(void * buffer, size_t whisper_model_loader loader = {}; - fprintf(stderr, "%s: loading model from buffer\n", __func__); - loader.context = &ctx; loader.read = [](void * ctx, void * output, size_t read_size) {