ImportError: cannot import name

2021-03-26  本文已影响0人  都灵的夏天_

做文本分类的时候发现这个问题:
from torchtext.datasets import text_classification
报错
ImportError: cannot import name 'text_classification' from 'torchtext.datasets'
阅读源码发现没有这个模块,查看文档发现新版本较大改动,
解决方法:

#注释掉from torchtext.datasets import text_classification 
#原代码改为:
train_dataset, test_dataset = torchtext.datasets.AG_NEWS(root='./data/ag_news_csv/', split=('train', 'test'))

#原代码:
#train_dataset, test_dataset = text_classification.DATASETS['AG_NEWS'](root=load_data_path)
上一篇下一篇

猜你喜欢

热点阅读