当前位置:   article > 正文

tiktoken安装方式和对应的Python版本_python3 tiktoken

python3 tiktoken

目录

一、安装方式

1.版本要求

2.安装命令

二、代码样例

三、性能表现


一、安装方式

1.版本要求

Python版本>=3.8

2.安装命令

 pip install tiktoken


二、代码样例

  1. import tiktoken
  2. enc = tiktoken.get_encoding("cl100k_base")
  3. assert enc.decode(enc.encode("hello world")) == "hello world"
  4. # To get the tokeniser corresponding to a specific model in the OpenAI API:
  5. enc = tiktoken.encoding_for_model("gpt-4")

三、性能表现

tiktoken 比其他开源 tokeniser 快 3-6 倍

基于 1GB 文本进行测试,使用 GPT-2 tokeniser,使用 GPT2TokenizerFast from tokenizers==0.13.2, transformers==4.24.0 and tiktoken==0.2.0

在这里插入图片描述

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

闽ICP备14008679号