chencn2020

Results 2 issues of chencn2020

Hi, the mscoco website (http://mscoco.org/) is not available. Could you please provide another link for the downloading?

您好 请问你们在训练的时候,有没有遇到过训练卡在第一个epoch,但是GPU占用为100%的情况 一开始以为是服务器的问题,但只要把MASK Token部分代码删掉,就可以正常训练 ``` if cur_input_ids.numel() > 0: if getattr(self.config, 'tune_mm_mlp_adapter', False) and getattr(self.config, 'mm_use_im_start_end', False): mask_idx = torch.nonzero(cur_input_ids==self.tokenizer.convert_tokens_to_ids([''])[0]) _l = 0 for i, idx in enumerate(mask_idx): cur_new_input_embeds.append(self.get_model().embed_tokens(cur_input_ids[_l:idx[0]]).detach()) ##...