From d79c798753a519aea87ff71970d4da34d25da638 Mon Sep 17 00:00:00 2001 From: somebody Date: Sat, 17 Sep 2022 18:48:59 -0500 Subject: [PATCH] Change threshold for low-end model As per henk's recommendation --- static/koboldai.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/koboldai.js b/static/koboldai.js index f1e6c1bd..24202c12 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -1158,7 +1158,7 @@ function show_model_menu(data) { let warningText = ""; if (parameterCount > 25_000_000_000) warningText = "This is a very high-end model and will likely not run without a specialized setup."; // 25B - if (parameterCount < 5_000_000_000) warningText = "This is a lower-end model and may perform poorly."; // 5B + if (parameterCount < 2_000_000_000) warningText = "This is a lower-end model and may perform poorly."; // 2B if (parameterCount < 1_000_000_000) warningText = "This is a very low-end model and may perform incoherently."; // 1B if (!warningText) return;