From 2935e97610d7997d26ee24539d267c1a8d157642 Mon Sep 17 00:00:00 2001 From: Ruonan Wang Date: Thu, 21 Nov 2024 02:21:34 -0800 Subject: [PATCH] small fix of cpp readme(#12425) --- .../NPU/HF-Transformers-AutoModels/LLM/CPP_Examples/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/llm/example/NPU/HF-Transformers-AutoModels/LLM/CPP_Examples/README.md b/python/llm/example/NPU/HF-Transformers-AutoModels/LLM/CPP_Examples/README.md index 31e6a0a3..5d3bb908 100644 --- a/python/llm/example/NPU/HF-Transformers-AutoModels/LLM/CPP_Examples/README.md +++ b/python/llm/example/NPU/HF-Transformers-AutoModels/LLM/CPP_Examples/README.md @@ -30,11 +30,11 @@ pip install transformers==4.45.0 accelerate==0.33.0 ``` ## 2. Convert Model -We provide a [convert script](convert_model.py) under current directory, by running it, you can obtain the whole weights and configuration files which are required to run C++ example. +We provide a [convert script](convert.py) under current directory, by running it, you can obtain the whole weights and configuration files which are required to run C++ example. ```cmd :: to convert Qwen2.5-7b-Instruct -python convert_model.py --repo-id-or-model-path Qwen/Qwen2.5-7B-Instruct --save-directory +python convert.py --repo-id-or-model-path Qwen/Qwen2.5-7B-Instruct --save-directory ```