mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +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: "###"
|
end_sym: "###"
|
||||||
low_resource: True
|
low_resource: True
|
||||||
prompt_template: '###Human: {} ###Assistant: '
|
prompt_template: '###Human: {} ###Assistant: '
|
||||||
ckpt: '/home/zhud/ibex/pretrained_minigpt4.pth'
|
ckpt: '/path/to/checkpoint/'
|
||||||
|
|
||||||
|
|
||||||
datasets:
|
datasets:
|
||||||
|
@ -5,7 +5,7 @@ model:
|
|||||||
end_sym: "</s>"
|
end_sym: "</s>"
|
||||||
low_resource: True
|
low_resource: True
|
||||||
prompt_template: '[INST] {} [/INST] '
|
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:
|
datasets:
|
||||||
|
@ -24,7 +24,7 @@ class BaseModel(nn.Module):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def device(self):
|
def device(self):
|
||||||
return list(self.parameters())[0].device
|
return list(self.parameters())[-1].device
|
||||||
|
|
||||||
def load_checkpoint(self, url_or_filename):
|
def load_checkpoint(self, url_or_filename):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user