本文简要介绍python语言中 torchtext.data.utils.ngrams_iterator
的用法。
用法:
torchtext.data.utils.ngrams_iterator(token_list, ngrams)
token_list-令牌列表
ngrams-ngram 的数量。
返回产生给定标记及其 ngram 的迭代器。
例子
>>> token_list = ['here', 'we', 'are'] >>> list(ngrams_iterator(token_list, 2)) >>> ['here', 'here we', 'we', 'we are', 'are']
参数:
相关用法
- Python PyTorch nanquantile用法及代码示例
- Python PyTorch nll_loss用法及代码示例
- Python PyTorch narrow用法及代码示例
- Python PyTorch normal_用法及代码示例
- Python PyTorch nansum用法及代码示例
- Python PyTorch no_grad用法及代码示例
- Python PyTorch norm用法及代码示例
- Python PyTorch noop_hook用法及代码示例
- Python PyTorch numericalize_tokens_from_iterator用法及代码示例
- Python PyTorch neg用法及代码示例
- Python PyTorch normal用法及代码示例
- Python PyTorch nanmedian用法及代码示例
- Python PyTorch ndtri用法及代码示例
- Python PyTorch ne用法及代码示例
- Python PyTorch nextafter用法及代码示例
- Python PyTorch nonzero用法及代码示例
- Python PyTorch numel用法及代码示例
- Python PyTorch nanmean用法及代码示例
- Python PyTorch ndtr用法及代码示例
- Python PyTorch nan_to_num用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
- Python PyTorch vdot用法及代码示例
- Python PyTorch ELU用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchtext.data.utils.ngrams_iterator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。