mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Minor fix
This commit is contained in:
parent
a49cc69a4a
commit
9fab9a1ca6
@ -92,7 +92,7 @@ def get_model_metadata(model):
|
|||||||
model_settings['desc_act'] = metadata['desc_act']
|
model_settings['desc_act'] = metadata['desc_act']
|
||||||
|
|
||||||
# Ignore rope_freq_base if set to the default value
|
# Ignore rope_freq_base if set to the default value
|
||||||
if model_settings['rope_freq_base'] == 10000:
|
if 'rope_freq_base' in model_settings and model_settings['rope_freq_base'] == 10000:
|
||||||
model_settings.pop('rope_freq_base')
|
model_settings.pop('rope_freq_base')
|
||||||
|
|
||||||
# Apply user settings from models/config-user.yaml
|
# Apply user settings from models/config-user.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user