From 3196807604d08b5ed8cc91026a597902a65c0ad2 Mon Sep 17 00:00:00 2001 From: kennymckormick Date: Sun, 24 Dec 2023 17:34:34 +0800 Subject: [PATCH] fix order of auto run --- scripts/auto_run.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/auto_run.py b/scripts/auto_run.py index be3132112..fed32a4e5 100644 --- a/scripts/auto_run.py +++ b/scripts/auto_run.py @@ -9,6 +9,9 @@ def is_api(x): models = list(supported_VLM) models = [x for x in models if 'fs' not in x] models = [x for x in models if not is_api(x)] +small_models = [x for x in models if '80b' not in x] +large_models = [x for x in models if '80b' in x] +models = small_models + large_models for m in models: if '80b' in m: