DeepSeek Coder 是一个强大的代码模型,在两万亿个代码和自然语言 token 上训练而成。

1.3b 6.7b 33b

601.6K 14 个月前

说明

DeepSeek Coder 是从头开始训练的,其中 87% 为代码,13% 为英语和中文的自然语言。每个模型都在两万亿个 token 上进行了预训练。

可用模型

13 亿参数模型

ollama run deepseek-coder

67 亿参数模型

ollama run deepseek-coder:6.7b

330 亿参数模型

ollama run deepseek-coder:33b

CLI (命令行界面)

打开终端并运行 ollama run deepseek-coder

API (应用程序编程接口)

使用 curl 的示例

curl -X POST http://localhost:11434/api/generate -d '{
  "model": "deepseek-coder",
  "prompt":"Why is the sky blue?"
 }'

API 文档

参考

HuggingFace