mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Change threshold for low-end model
As per henk's recommendation
This commit is contained in:
@@ -1158,7 +1158,7 @@ function show_model_menu(data) {
|
|||||||
let warningText = "";
|
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 > 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 (parameterCount < 1_000_000_000) warningText = "This is a very low-end model and may perform incoherently."; // 1B
|
||||||
|
|
||||||
if (!warningText) return;
|
if (!warningText) return;
|
||||||
|
Reference in New Issue
Block a user