mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 10:30:45 +00:00
fix the device bug with latest transformers
This commit is contained in:
parent
81d7314a02
commit
871918f758
@ -5,7 +5,7 @@ model:
|
||||
end_sym: "###"
|
||||
low_resource: True
|
||||
prompt_template: '###Human: {} ###Assistant: '
|
||||
ckpt: '/home/zhud/ibex/pretrained_minigpt4.pth'
|
||||
ckpt: '/path/to/checkpoint/'
|
||||
|
||||
|
||||
datasets:
|
||||
|
@ -5,7 +5,7 @@ model:
|
||||
end_sym: "</s>"
|
||||
low_resource: True
|
||||
prompt_template: '[INST] {} [/INST] '
|
||||
ckpt: '/home/zhud/c2090/zhud/project/MiniGPT-4/minigpt4/output/minigpt4_stage2_finetune/20230826182/checkpoint_4.pth'
|
||||
ckpt: '/path/to/checkpoint/'
|
||||
|
||||
|
||||
datasets:
|
||||
|
@ -24,7 +24,7 @@ class BaseModel(nn.Module):
|
||||
|
||||
@property
|
||||
def device(self):
|
||||
return list(self.parameters())[0].device
|
||||
return list(self.parameters())[-1].device
|
||||
|
||||
def load_checkpoint(self, url_or_filename):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user