当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch custom_replace用法及代码示例


本文简要介绍python语言中 torchtext.data.functional.custom_replace 的用法。

用法:

torchtext.data.functional.custom_replace(replace_pattern)

用于转换文本字符串的转换。

例子

>>> from torchtext.data.functional import custom_replace
>>> custom_replace_transform = custom_replace([(r'S', 's'), (r'\s+', ' ')])
>>> list_a = ["Sentencepiece encode  aS  pieces", "exampleS to   try!"]
>>> list(custom_replace_transform(list_a))
    ['sentencepiece encode as pieces', 'examples to try!']

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchtext.data.functional.custom_replace。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。