We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果我用BERT预训练做ASGCN,aspect_double_idx修改成aspect_double_idx = torch.cat([left_len.unsqueeze(1), (left_len+aspect_len-1).unsqueeze(1)], dim=1)是正确的嘛,我按照上述修改会报错。 File "/root/autodl-tmp/ABSA-PyTorch-master/models/asgcn_bert.py", line 75, in mask mask = torch.tensor(mask, dtype=torch.float).unsqueeze(2).to(self.opt.device) ValueError: expected sequence of length 85 at dim 1 (got 90)
The text was updated successfully, but these errors were encountered:
text_bert_indices, aspect_bert_indices, left_bert_indices, adj = inputs text_len = torch.sum(text_bert_indices != 0, dim=-1) aspect_len = torch.sum(aspect_bert_indices != 0, dim=-1) left_len = torch.sum(left_bert_indices != 0, dim=-1)
Sorry, something went wrong.
bert tokenizer 和普通的tokenizer不太一样,可以print出来debug下
请问你有试过做ASGCN-BERT嘛?模型的输入应该怎么改呢?
No branches or pull requests
如果我用BERT预训练做ASGCN,aspect_double_idx修改成aspect_double_idx = torch.cat([left_len.unsqueeze(1), (left_len+aspect_len-1).unsqueeze(1)], dim=1)是正确的嘛,我按照上述修改会报错。
File "/root/autodl-tmp/ABSA-PyTorch-master/models/asgcn_bert.py", line 75, in mask
mask = torch.tensor(mask, dtype=torch.float).unsqueeze(2).to(self.opt.device)
ValueError: expected sequence of length 85 at dim 1 (got 90)
The text was updated successfully, but these errors were encountered: