mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 18:40:46 +00:00
Update mini_gpt4.py
fix the bug of low resource training
This commit is contained in:
parent
22d8888ca2
commit
193e607db1
@ -144,7 +144,7 @@ class MiniGPT4(Blip2Base):
|
|||||||
)
|
)
|
||||||
|
|
||||||
inputs_llama = self.llama_proj(query_output.last_hidden_state)
|
inputs_llama = self.llama_proj(query_output.last_hidden_state)
|
||||||
atts_llama = torch.ones(inputs_llama.size()[:-1], dtype=torch.long).to(image.device)
|
atts_llama = torch.ones(inputs_llama.size()[:-1], dtype=torch.long).to(device)
|
||||||
return inputs_llama, atts_llama
|
return inputs_llama, atts_llama
|
||||||
|
|
||||||
def prompt_wrap(self, img_embeds, atts_img, prompt):
|
def prompt_wrap(self, img_embeds, atts_img, prompt):
|
||||||
|
Loading…
Reference in New Issue
Block a user