赞
踩
本文主要介绍 torchtext.transforms
的一些常用API。
VocabTransform
主要用于将输入的词元映射成它们在词表中的索引。输入的词元可以是 List[str]
或 List[List[str]]
型。
请看下面的例子
from collections import OrderedDict
from torchtext.transforms import VocabTransform
ordered_dict = OrderedDict([('a', 1),
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。