瀏覽代碼

convert-hf : Handle NotImplementedError in convert-hf-to-gguf (#7660)

Galunid 1 年之前
父節點
當前提交
0515ad93f4
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      convert-hf-to-gguf.py

+ 6 - 1
convert-hf-to-gguf.py

@@ -2840,7 +2840,12 @@ def main() -> None:
     hparams = Model.load_hparams(dir_model)
 
     with torch.inference_mode():
-        model_class = Model.from_model_architecture(hparams["architectures"][0])
+        try:
+            model_class = Model.from_model_architecture(hparams["architectures"][0])
+        except NotImplementedError:
+            logger.error(f"Model {hparams['architectures'][0]} is not supported")
+            sys.exit(1)
+
         model_instance = model_class(dir_model, ftype_map[args.outtype], fname_out, args.bigendian, args.use_temp_file, args.no_lazy)
 
         logger.info("Set model parameters")