Update mini_gpt4.py

fix the bug of low resource training
This commit is contained in:
LYMDLUT 2023-05-09 00:09:33 +08:00 committed by GitHub
parent 22d8888ca2
commit 193e607db1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,7 @@ class MiniGPT4(Blip2Base):
)
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
def prompt_wrap(self, img_embeds, atts_img, prompt):