jasoncao11 / nlp-notebook

NLP 领域常见任务的实现,包括新词发现、以及基于pytorch的词向量、中文文本分类、实体识别、摘要文本生成、句子相似度判断、三元组抽取、预训练模型等。
MIT License
510 stars 109 forks source link

4.1Seq2Seq #5

Closed HelloWorldGitHubUser closed 2 years ago

HelloWorldGitHubUser commented 2 years ago

请问在Seq2Seq模型中,把trg改为tensor类型后,出现以下报错: Traceback (most recent call last): File "E:\nlp-notebook-master\4-1.Seq2seq\train_eval.py", line 54, in trg, src = trg.to(device), src.to(device) AttributeError: 'NoneType' object has no attribute 'to' 是怎么回事呢?

jasoncao11 commented 2 years ago

看一下你的trg, src是不是tensor类型

babyta commented 1 year ago

我的也是这个问题,trg里有数据,src里是none。是不是数据读取或者tqdm那里读取据出问题了?

wanshenlong commented 1 year ago

我也是这个问题,请问如何解决