当前位置:   article > 正文

tokenizer()和tokenizer.encode_plus()的区别_self.tokenizer()

self.tokenizer()
encoding = self.tokenizer(
            text,
            add_special_tokens=True,  # 句子开头和分隔加cls sep  [cls] + text + [sep]
            max_length=self.max_len,
            return_token_type_ids=True,  # 分句ids  0000000
            return_attention_mask=True,  # 注意力编码  1111111000
            return_tensors='pt',  # pytorch类型
            # padding="max_length"
            # truncation=True  # 超过max_length就截断
        )
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
encoding = self.tokenizer.encode_plus(
            text,
            add_special_tokens=True,  # 句子开头和分隔加cls sep  [cls] + text + [sep]
            max_length=self.max_len,
            return_token_type_ids=True,  # 分句ids  0000000
            return_attention_mask=True,  # 注意力编码  1111111000
            return_tensors='pt',  # pytorch类型
            # padding="max_length"
            # truncation=True  # 超过max_length就截断
        )
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

4.0.0版本之前用encode_plus(),之后用tokenizer。tokenizer()增加了一些安全性判断,底层还是调用encode_plus()在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/559374
推荐阅读
相关标签
  

闽ICP备14008679号