Change threshold for low-end model

As per henk's recommendation
This commit is contained in:
somebody
2022-09-17 18:48:59 -05:00
parent 3a44d8993a
commit d79c798753

View File

@@ -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;