From a3f353b93931e9fb138bc5f5e2bc39ca9671abc9 Mon Sep 17 00:00:00 2001 From: "Pingchuan Ma (Henry)" <58333343+HensonMa@users.noreply.github.com> Date: Tue, 6 Jun 2023 17:15:13 +0800 Subject: [PATCH] [LLM] add long time loading disclaimer for LLM model converting (#8279) --- python/llm/src/bigdl/llm/ggml/convert.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/llm/src/bigdl/llm/ggml/convert.py b/python/llm/src/bigdl/llm/ggml/convert.py index 1dc472c4..69c2aa75 100644 --- a/python/llm/src/bigdl/llm/ggml/convert.py +++ b/python/llm/src/bigdl/llm/ggml/convert.py @@ -97,6 +97,7 @@ def _convert_to_ggml(model_path: str, outfile_dir: str, os.makedirs(outfile_dir, exist_ok=True) outtype = outtype.replace('p', '') + print("It may takes several minutes to load the original model, please wait...") if model_family == 'llama': _convert_llama(model_path, outfile_dir, outtype) if model_family == 'gptneox':