学习 pytorch 官网的文本分类Text classification with the torchtext library — PyTorch Tutorials 2.3.0+cu121 documentation遇到了不少问题,附上解决方法
- ConnectionError:
This exception is thrown by __iter__ of HTTPReaderIterDataPipe() - 这个问题的解决方式是打开VPN
- AG_NEWS(split=“train”), 显示没有split属性
- 原因:下载的torchtext不是最新版,split属性是在较新版本中(pytorch教程写时torchtext版本:0.16.0)出现的
- 解决方法:更换更高版本的torchtext,但是torch和torchtext的版本要彼此适配
建议使用以下命令重新更换torch和torchtext的版本pip install torch==2.1.2 -i https://pypi.tuna.tsinghua.edu.cn/simple pip install torchtext==0.16.2 -i https://pypi.tuna.tsinghua.edu.cn/simple