From 51e9d39117cb99aa48e00917402563eaf7bda1d1 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 11 Oct 2023 09:55:15 +0300 Subject: [PATCH] Update convert-baichuan-hf-to-gguf.py --- convert-baichuan-hf-to-gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert-baichuan-hf-to-gguf.py b/convert-baichuan-hf-to-gguf.py index 8054823cf..c1c080f60 100755 --- a/convert-baichuan-hf-to-gguf.py +++ b/convert-baichuan-hf-to-gguf.py @@ -87,7 +87,7 @@ if not dir_model.is_dir(): print(f'Error: {args.model} is not a directory', file = sys.stderr) sys.exit(1) -endianess =gguf.GGUFEndian.LITTLE +endianess = gguf.GGUFEndian.LITTLE if args.bigendian: endianess = gguf.GGUFEndian.BIG print(f"gguf: Conversion Endianess {endianess}")