From 927d00c232029582f5ef64fd356d06c7c56acdf8 Mon Sep 17 00:00:00 2001 From: Forenche Date: Sun, 16 Feb 2025 17:27:29 +0530 Subject: [PATCH] gptqmodel: Fixup supported models list * There was a missing ',' after minicpm which was breaking model detection * I noticed this after trying to use the PR: https://github.com/ModelCloud/GPTQModel/pull/1116 * Test: Build on local and try out minicpmo Signed-off-by: Forenche --- gptqmodel/models/_const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gptqmodel/models/_const.py b/gptqmodel/models/_const.py index ffc8369de..083418973 100644 --- a/gptqmodel/models/_const.py +++ b/gptqmodel/models/_const.py @@ -157,7 +157,7 @@ def get_best_device(backend: BACKEND = BACKEND.AUTO) -> torch.device: "cohere", "cohere2", "minicpm", - "minicpm3" + "minicpm3", "qwen2_moe", "qwen2_vl", "dbrx_converted",