解决AttributeError: module ‘torchtext.data‘ has no attribute ‘Field‘问题(Datasets,Example等)

1.torchtext安装版本对应

torch版本:1.x.y

torchtext版本:1.x+1,y

 

2.解决AttributeError: module 'torchtext.data' has no attribute 'Field'问题

解决AttributeError: module ‘torchtext.data‘ has no attribute ‘Field‘问题(Datasets,Example等)_第1张图片

 torchtext=0.9.0版本后,将data全部移到 “legacy”下,所以在data前加一个“legacy”

# 修改前
torchtext.data.Field()
# 修改后
torchtext.legacy.data.Field()

你可能感兴趣的:(BUG,conda,ubuntu,人工智能,深度学习)