aboutsummaryrefslogtreecommitdiff
path: root/convert-pth-to-ggml.py
diff options
context:
space:
mode:
authorJiří Podivín <66251151+jpodivin@users.noreply.github.com>2023-06-03 14:11:53 +0200
committerGitHub <noreply@github.com>2023-06-03 15:11:53 +0300
commitb5c85468a3eadf424420af5bf11c2353ff828cda (patch)
tree6ae804cd517ae170fcbae431d6e963fd6f9677b8 /convert-pth-to-ggml.py
parent136476e898fb96c302b0829ee3e79267ae12660f (diff)
Docker: change to calling convert.py (#1641)
Deprecation disclaimer was added to convert-pth-to-ggml.py
Diffstat (limited to 'convert-pth-to-ggml.py')
-rw-r--r--convert-pth-to-ggml.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/convert-pth-to-ggml.py b/convert-pth-to-ggml.py
index f87ac27..dd15393 100644
--- a/convert-pth-to-ggml.py
+++ b/convert-pth-to-ggml.py
@@ -4,7 +4,9 @@ import argparse
import convert
-parser = argparse.ArgumentParser(description='Convert a LLaMA model checkpoint to a ggml compatible file')
+parser = argparse.ArgumentParser(
+ description="""[DEPRECATED - use `convert.py` instead]
+ Convert a LLaMA model checkpoint to a ggml compatible file""")
parser.add_argument('dir_model', help='directory containing the model checkpoint')
parser.add_argument('ftype', help='file type (0: float32, 1: float16)', type=int, choices=[0, 1], default=1)
args = parser.parse_args()