赞
踩
Py之torchtext:torchtext库的简介、安装、使用方法之详细攻略
目录
torchtext库是PyTorch项目的一部分。PyTorch 是一个开源机器学习框架。该torchtext软件包由数据处理实用程序和流行的自然语言数据集组成。
官方API文档:torchtext — Torchtext 0.15.0 documentation
- pip install -i https://pypi.tuna.tsinghua.edu.cn/simple torchtext
-
- pip install torchtext==0.10.0
- pip install -i https://pypi.tuna.tsinghua.edu.cn/simple torchtext==0.10.0
-
-
- from torchtext.data import Field
- tokenize = lambda x:x.split()
- TEXT = Field(sequential = True, tokenize = tokenize, lower = True)
-
- LABEL = Field(sequential = False, use_vocab = False)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。