mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +00:00
Merge branch 'main' of https://github.com/junchen14/MiniGPT-4_finetune into main
This commit is contained in:
commit
5c3ec8bb73
@ -172,12 +172,12 @@ class MiniGPTBase(BaseModel):
|
|||||||
batch_size = len(conv_q)
|
batch_size = len(conv_q)
|
||||||
for batch_idx in range(batch_size):
|
for batch_idx in range(batch_size):
|
||||||
questions, answers = conv_q[batch_idx], conv_a[batch_idx]
|
questions, answers = conv_q[batch_idx], conv_a[batch_idx]
|
||||||
questions = [self.llama_tokenizer(q,
|
questions = [self.llama_tokenizer(self.llama_tokenizer.bos_token + q,
|
||||||
return_tensors="pt",
|
return_tensors="pt",
|
||||||
add_special_tokens=False).to(self.device) for q in questions[1:]] # the first question is handled in the prompt wrap function, skip it
|
add_special_tokens=False).to(self.device) for q in questions[1:]] # the first question is handled in the prompt wrap function, skip it
|
||||||
answers = [self.llama_tokenizer(q,
|
answers = [self.llama_tokenizer(a + self.end_sym,
|
||||||
return_tensors="pt",
|
return_tensors="pt",
|
||||||
add_special_tokens=False).to(self.device) for q in answers]
|
add_special_tokens=False).to(self.device) for a in answers]
|
||||||
cur_id = []
|
cur_id = []
|
||||||
cur_target = []
|
cur_target = []
|
||||||
for i in range(len(questions)):
|
for i in range(len(questions)):
|
||||||
|
Loading…
Reference in New Issue
Block a user