mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 10:30:45 +00:00
Update minigpt_v2.py
Add the missing device_8bit argument in MiniGPT-v2
This commit is contained in:
parent
a431672c89
commit
cbf46b160b
@ -99,6 +99,7 @@ class MiniGPTv2(MiniGPTBase):
|
|||||||
vit_precision = cfg.get("vit_precision", "fp16")
|
vit_precision = cfg.get("vit_precision", "fp16")
|
||||||
freeze_vit = cfg.get("freeze_vit", True)
|
freeze_vit = cfg.get("freeze_vit", True)
|
||||||
low_resource = cfg.get("low_resource", False)
|
low_resource = cfg.get("low_resource", False)
|
||||||
|
device_8bit = cfg.get("device_8bit", 0)
|
||||||
|
|
||||||
prompt_template = cfg.get("prompt_template", '[INST] {} [/INST]')
|
prompt_template = cfg.get("prompt_template", '[INST] {} [/INST]')
|
||||||
max_txt_len = cfg.get("max_txt_len", 300)
|
max_txt_len = cfg.get("max_txt_len", 300)
|
||||||
@ -122,6 +123,7 @@ class MiniGPTv2(MiniGPTBase):
|
|||||||
prompt_template=prompt_template,
|
prompt_template=prompt_template,
|
||||||
max_txt_len=max_txt_len,
|
max_txt_len=max_txt_len,
|
||||||
low_resource=low_resource,
|
low_resource=low_resource,
|
||||||
|
device_8bit=device_8bit,
|
||||||
end_sym=end_sym,
|
end_sym=end_sym,
|
||||||
lora_r=lora_r,
|
lora_r=lora_r,
|
||||||
lora_alpha=lora_alpha,
|
lora_alpha=lora_alpha,
|
||||||
|
Loading…
Reference in New Issue
Block a user