当前位置:   article > 正文

OpenAI的编码方式Tiktoken_tiktoken.encoding

tiktoken.encoding

OpenAI模型的编码方式

        OpenAI的模型使用自己的开源的库Tiktoken进行字符的编码。Tiktoken支持三种OpenAI模型的字符编码

Encoding nameOpenAI models
cl100k_basegpt-4gpt-3.5-turbotext-embedding-ada-002
p50k_baseCodex models, text-davinci-002text-davinci-003
r50k_base (or gpt2)GPT-3 models like davinci

可以通过以下两种方式进行字符编码器定义:

  1. encoding = tiktoken.encoding_for_model('gpt-3.5-turbo')
  2. encoding = tiktoken.get_encoding("cl100k_base")

使用方法docede和encode进行字符和token id之间的转换。

  1. encoding.encode("tiktoken is great!")
  2. >>>
  3. [83, 1609, 5963, 374, 2294, 0]
  4. encoding.decode([83, 1609, 5963, 374, 2294, 0])
  5. >>>
  6. 'tiktoken is great!'

对话补全API的token计算方式

        以下代码来自openai-cookbook,可以实现对openai不同的chat completions api接口输入messages的token长度计算。

  1. def num_tokens_from_messages(messages, model="gpt-3.5-turbo-0613"):
  2. """Return the number of tokens used by a list of messages."""
  3. try:
  4. encoding = tiktoken.encoding_for_model(model)
  5. except KeyError:
  6. print("Warning: model not found. Using cl100k_base encoding.")
  7. encoding = tiktoken.get_encoding("cl100k_base")
  8. if model in {
  9. "gpt-3.5-turbo-0613",
  10. "gpt-3.5-turbo-16k-0613",
  11. "gpt-4-0314",
  12. "gpt-4-32k-0314",
  13. "gpt-4-0613",
  14. "gpt-4-32k-0613",
  15. }:
  16. tokens_per_message = 3
  17. tokens_per_name = 1
  18. elif model == "gpt-3.5-turbo-0301":
  19. tokens_per_message = 4 # every message follows <|start|>{role/name}\n{content}<|end|>\n
  20. tokens_per_name = -1 # if there's a name, the role is omitted
  21. elif "gpt-3.5-turbo" in model:
  22. print("Warning: gpt-3.5-turbo may update over time. Returning num tokens assuming gpt-3.5-turbo-0613.")
  23. return num_tokens_from_messages(messages, model="gpt-3.5-turbo-0613")
  24. elif "gpt-4" in model:
  25. print("Warning: gpt-4 may update over time. Returning num tokens assuming gpt-4-0613.")
  26. return num_tokens_from_messages(messages, model="gpt-4-0613")
  27. else:
  28. raise NotImplementedError(
  29. f"""num_tokens_from_messages() is not implemented for model {model}. See https://github.com/openai/openai-python/blob/main/chatml.md for information on how messages are converted to tokens."""
  30. )
  31. num_tokens = 0
  32. for message in messages:
  33. num_tokens += tokens_per_message
  34. for key, value in message.items():
  35. num_tokens += len(encoding.encode(value))
  36. if key == "name":
  37. num_tokens += tokens_per_name
  38. num_tokens += 3 # every reply is primed with <|start|>assistant<|message|>
  39. return num_tokens

        可以看出gpt-3.5-turbo-0301版本的计算方式和其他模型有所区别。主要区别在与连接字符设置的变化,message中name关键词的处理有所不同。

token计算实践中的问题

        使用上述的代码进行prompt tokens length计算的时候发现,与openai的api返回长度出现了不一致的现象。messages的格式中四种role:system、user、assistant、function。当role为function的时候,会需要添加一个name的关键词,所以当我在messages中添加了带有function的message时就会出现上诉情况。

        为了使chatgpt能够实现实时信息的回复,定义了一个get_info_from_web的函数用于实时搜索网络信息供chatgpt调用以便获得更好的问题答案。所以当我询问的问题为:今天杭州天气怎么样?,并且chatgpt通过function call功能获得网络信息之后构造的新的messages:

  1. [{
  2. 'role': 'system',
  3. 'content': "Don't make assumptions about what values to plug into functions. Ask for clarification if a user request is ambiguous. "},
  4. {
  5. 'role': 'user',
  6. 'content': '今天杭州天气怎么样?'},
  7. {
  8. 'role': 'function',
  9. 'name': 'get_info_from_web',
  10. 'content': '86°F'}
  11. ]

        上述的messages调用chatgpt:

  1. response = openai.ChatCompletion.create(
  2. model="gpt-3.5-turbo-0613",
  3. messages=messages,
  4. temperature=0,
  5. )
  6. print(response)
  7. >>>
  8. {
  9. "id": "chatcmpl-xxxxxxx",
  10. "object": "chat.completion",
  11. "created": xxxxxxxx,
  12. "model": "gpt-3.5-turbo-0613",
  13. "choices": [
  14. {
  15. "index": 0,
  16. "message": {
  17. "role": "assistant",
  18. "content": "今天杭州的天气是86°F。请问还有其他关于天气的信息需要我提供吗?"
  19. },
  20. "finish_reason": "stop"
  21. }
  22. ],
  23. "usage": {
  24. "prompt_tokens": 56,
  25. "completion_tokens": 32,
  26. "total_tokens": 88
  27. }
  28. }

        从上述的代码结果看到prompt tokens length为56,而同样的messages调用openai-cookbook中的方法的结果为58,两者的计算结果相差了2个token长度。

分析

        以上的不一致问题只会出现在messages中的message包含了name关键, 也就是说在使用function这个role的时候才会发生,并且每添加一个有function的message,最后的token差距增加2。所以可以看出问题应该是出现在role为function的message环节的计算上,我猜测是gpt-3.5-turbo-0613模型使用了和gpt-3.5-turbo-0301一样的tokens_per_name,使用了-1而不是1,所以会出现2的差距。

        上面的现象和推测是本人的测试结果和猜测,希望有知道其中原因的朋友可以指出。

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

闽ICP备14008679号