如何选择OpenAI的模型
2024/2/6 21:02:26
本文主要是介绍如何选择OpenAI的模型,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
动机
OpenAI的模型比较多,更新也比较频繁,用户不知道如何选择。
本文系统地整理了模型,可以快速地选择模型。
截止时间
本文章的数据,截止到2024年2月1日。
模型分类
模型名称 | 说明 |
---|---|
GPT-4 | |
GPT-3.5 | |
DALL·E | 文生图 |
TTS | 生成语音 |
Whisper | 识别语音 |
Embeddings | |
Moderation | 审核内容 |
模型的选择
分类 | 需求 | 选择的模型名称 |
---|---|---|
GPT-4 | ||
gpt-4-turbo-preview |
||
需要有视觉能力 | gpt-4-vision-preview |
|
GPT-3.5 | 4K | gpt-3.5-turbo-1106 |
16K | gpt-3.5-turbo-16k |
|
Embedding | ||
text-embedding-3-small |
||
希望非英文的场景更精确 | text-embedding-3-large |
GPT 3.5
截止到2024年2月1日,如果想使用GPT-3.5,使用gpt-3.5-turbo-1106
就可以;如果超过16K,则使用gpt-3.5-turbo-16k
。
过几天可能就会更新gpt-3.5-turbo-0125
。
模型名称 | 说明 | 备注 |
---|---|---|
gpt-3.5-turbo | 指向 gpt-3.5-turbo-0613 |
不建议使用,没有指向最新模型 |
gpt-3.5-turbo-16k | 指向 gpt-3.5-turbo-16k-0613 |
|
gpt-3.5-turbo-0125 | 还没发布。 | |
gpt-3.5-turbo-1106 | 最新版本(截止到2024年1月) | |
gpt-3.5-turbo-0613 | ||
gpt-3.5-turbo-16k-0613 | ||
gpt-3.5-turbo-0301 | ||
gpt-3.5-turbo-instruct | ||
训练数据截止到:2021年9月
tokens限制:默认是4,096 tokens,如果名字中有16K,就是16,385 tokens。
gpt-3.5-turbo-1106更新的内容
具有改进的指令跟随、JSON模式、可重现输出、并行函数调用等功能。了解更多[1]。
In addition to GPT-4 Turbo, we are also releasing a new version of GPT-3.5 Turbo that supports a 16K context window by default. The new 3.5 Turbo supports improved instruction following, JSON mode, and parallel function calling. For instance, our internal evals show a 38% improvement on format following tasks such as generating JSON, XML and YAML. Developers can access this new model by calling
gpt-3.5-turbo-1106
in the API. Older models will continue to be accessible by passinggpt-3.5-turbo-0613
in the API until June 13, 2024. Learn more[2].
GPT-4
截止到2024年2月1日,如果想使用GPT-4,使用gpt-4-turbo-preview
就可以;如果需要视觉能力就使用gpt-4-vision-preview
。
| MODEL | DESCRIPTION |
gpt-4-turbo-preview |
gpt-4 |
gpt-4-32k |
gpt-4-vision-preview |
使用视觉能力的话,必须使用这个。 |
gpt-4-0125-preview |
gpt-4-1106-preview |
gpt-4-0613 |
gpt-4-32k-0613 |
除了老的GPT-4,其它(turbo或preview)模块:
• 训练数据截止时间:2023年3月
• tokens限制:总共是128K;但,输出只有4K。
Embedding
模型名称 | 描述 | 向量大小 | 价格 |
---|---|---|---|
text-embedding-3-large | 适合非英文的任务。 | 3,072 | 比ada稍微多点 |
text-embedding-3-small | text-embedding-ada-002的升级版本。 | 1,536 | 是ada的1/5 |
text-embedding-ada-002 | |||
1,536 | |||
模型更新说明
-
• 2024年1月[3]
-
• 2023年11月[4]
引用链接
[1]
了解更多: https://openai.com/blog/new-models-and-developer-products-announced-at-devday[2]
Learn more: https://platform.openai.com/docs/models/gpt-3-5[3]
2024年1月: https://openai.com/blog/new-embedding-models-and-api-updates[4]
2023年11月: https://openai.com/blog/new-models-and-developer-products-announced-at-devday
这篇关于如何选择OpenAI的模型的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-25探索随机贪心算法:从入门到初级应用
- 2024-12-25树形模型进阶:从入门到初级应用教程
- 2024-12-25搜索算法进阶:新手入门教程
- 2024-12-25算法高级进阶:新手与初级用户指南
- 2024-12-25随机贪心算法进阶:初学者的详细指南
- 2024-12-25贪心算法进阶:从入门到实践
- 2024-12-25线性模型进阶:初学者的全面指南
- 2024-12-25朴素贪心算法教程:初学者指南
- 2024-12-25树形模型教程:从零开始的图形建模入门指南
- 2024-12-25搜索算法教程:初学者必备指南