Add trust_remote_code to all HF loaders

This commit is contained in:
oobabooga 2023-12-08 06:29:26 -08:00
parent 181743fd97
commit 62d59a516f

View File

@ -59,6 +59,7 @@ loaders_and_params = OrderedDict({
'cpu', 'cpu',
'numa', 'numa',
'cfg_cache', 'cfg_cache',
'trust_remote_code',
'no_use_fast', 'no_use_fast',
'logits_all', 'logits_all',
'llamacpp_HF_info', 'llamacpp_HF_info',
@ -70,6 +71,7 @@ loaders_and_params = OrderedDict({
'rope_freq_base', 'rope_freq_base',
'compress_pos_emb', 'compress_pos_emb',
'cfg_cache', 'cfg_cache',
'trust_remote_code',
'no_use_fast', 'no_use_fast',
], ],
'ExLlamav2_HF': [ 'ExLlamav2_HF': [
@ -80,6 +82,7 @@ loaders_and_params = OrderedDict({
'cache_8bit', 'cache_8bit',
'alpha_value', 'alpha_value',
'compress_pos_emb', 'compress_pos_emb',
'trust_remote_code',
'no_use_fast', 'no_use_fast',
], ],
'AutoGPTQ': [ 'AutoGPTQ': [
@ -114,6 +117,7 @@ loaders_and_params = OrderedDict({
'groupsize', 'groupsize',
'model_type', 'model_type',
'pre_layer', 'pre_layer',
'trust_remote_code',
'no_use_fast', 'no_use_fast',
'gptq_for_llama_info', 'gptq_for_llama_info',
], ],