From e12a1852d9b617fc851caa5363527ea0e2ce8b4f Mon Sep 17 00:00:00 2001 From: Gennadij Date: Thu, 10 Aug 2023 19:42:24 +0300 Subject: [PATCH] Add Vicuna-v1.5 detection (#3524) --- models/config.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/config.yaml b/models/config.yaml index 23862770..3d5f48ff 100644 --- a/models/config.yaml +++ b/models/config.yaml @@ -53,6 +53,11 @@ llama-65b-gptq-3bit: .*vicuna.*(1.1|1_1|1.3|1_3): mode: 'instruct' instruction_template: 'Vicuna-v1.1' +.*vicuna.*(1.5|1_5): + mode: 'instruct' + instruction_template: 'Vicuna-v1.1' + truncation_length: 4096 + rms_norm_eps: 5.0e-6 .*stable.*vicuna: mode: 'instruct' instruction_template: 'StableVicuna'