Skip to content

Commit 93a8daf

Browse files
joshyan1pdevine
andauthoredJan 16, 2025
convert: import support for command-r models from safetensors (ollama#6063)
--------- Co-authored-by: Patrick Devine <patrick@infrahq.com>
1 parent a041b4d commit 93a8daf

10 files changed

+503
-0
lines changed
 

‎convert/convert.go

+2
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ func ConvertModel(fsys fs.FS, ws io.WriteSeeker) error {
191191
conv = &qwen2Model{}
192192
case "BertModel":
193193
conv = &bertModel{}
194+
case "CohereForCausalLM":
195+
conv = &commandrModel{}
194196
default:
195197
return errors.New("unsupported architecture")
196198
}

‎convert/convert_commandr.go

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
package convert
2+
3+
import (
4+
"cmp"
5+
6+
"github.com/ollama/ollama/llm"
7+
)
8+
9+
type commandrModel struct {
10+
ModelParameters
11+
MaxPositionEmbeddings uint32 `json:"max_position_embeddings"`
12+
HiddenSize uint32 `json:"hidden_size"`
13+
HiddenLayers uint32 `json:"num_hidden_layers"`
14+
IntermediateSize uint32 `json:"intermediate_size"`
15+
NumAttentionHeads uint32 `json:"num_attention_heads"`
16+
NumKeyValueHeads uint32 `json:"num_key_value_heads"`
17+
LayerNormEPS float32 `json:"layer_norm_eps"`
18+
RopeTheta float32 `json:"rope_theta"`
19+
UseQKNorm bool `json:"use_qk_norm"`
20+
MaxLength uint32 `json:"model_max_length"`
21+
LogitScale float32 `json:"logit_scale"`
22+
NCtx uint32 `json:"n_ctx"`
23+
}
24+
25+
var _ ModelConverter = (*commandrModel)(nil)
26+
27+
func (p *commandrModel) KV(t *Tokenizer) llm.KV {
28+
kv := p.ModelParameters.KV(t)
29+
kv["general.architecture"] = "command-r"
30+
kv["general.name"] = "command-r"
31+
kv["command-r.context_length"] = cmp.Or(p.MaxLength, p.MaxPositionEmbeddings, p.NCtx)
32+
kv["command-r.embedding_length"] = p.HiddenSize
33+
kv["command-r.block_count"] = p.HiddenLayers
34+
kv["command-r.feed_forward_length"] = p.IntermediateSize
35+
kv["command-r.attention.head_count"] = p.NumAttentionHeads
36+
kv["command-r.attention.head_count_kv"] = p.NumKeyValueHeads
37+
kv["command-r.attention.layer_norm_epsilon"] = p.LayerNormEPS
38+
kv["command-r.rope.freq_base"] = p.RopeTheta
39+
kv["command-r.max_position_embeddings"] = cmp.Or(p.MaxLength, p.MaxPositionEmbeddings)
40+
kv["command-r.logit_scale"] = p.LogitScale
41+
kv["command-r.rope.scaling.type"] = "none"
42+
43+
return kv
44+
}
45+
46+
func (p *commandrModel) Tensors(ts []Tensor) []llm.Tensor {
47+
var out []llm.Tensor
48+
for _, t := range ts {
49+
out = append(out, llm.Tensor{
50+
Name: t.Name(),
51+
Kind: t.Kind(),
52+
Shape: t.Shape(),
53+
WriterTo: t,
54+
})
55+
}
56+
57+
return out
58+
}
59+
60+
func (p *commandrModel) Replacements() []string {
61+
return []string{
62+
"self_attn.q_norm", "attn_q_norm",
63+
"self_attn.k_norm", "attn_k_norm",
64+
"model.layers", "blk",
65+
"input_layernorm", "attn_norm",
66+
"mlp.down_proj", "ffn_down",
67+
"mlp.gate_proj", "ffn_gate",
68+
"mlp.up_proj", "ffn_up",
69+
"self_attn.k_proj", "attn_k",
70+
"self_attn.o_proj", "attn_output",
71+
"self_attn.q_proj", "attn_q",
72+
"self_attn.v_proj", "attn_v",
73+
"model.norm", "output_norm",
74+
"model.embed_tokens", "token_embd",
75+
}
76+
}

‎convert/convert_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ func TestConvertModel(t *testing.T) {
109109
"all-MiniLM-L6-v2",
110110
"gemma-2-9b-it",
111111
"Qwen2.5-0.5B-Instruct",
112+
"c4ai-command-r-v01",
112113
}
113114

114115
for i := range cases {

‎convert/testdata/c4ai-command-r-v01.json

+344
Large diffs are not rendered by default.

‎template/command-r.gotmpl

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{{- if or .Tools .System }}<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>
2+
{{- if .Tools }}# Safety Preamble
3+
The instructions in this section override those in the task description and style guide sections. Don't answer questions that are harmful or immoral.
4+
5+
# System Preamble
6+
## Basic Rules
7+
You are a powerful conversational AI trained by Cohere to help people. You are augmented by a number of tools, and your job is to use and consume the output of these tools to best help the user. You will see a conversation history between yourself and a user, ending with an utterance from the user. You will then see a specific instruction instructing you what kind of response to generate. When you answer the user's requests, you cite your sources in your answers, according to those instructions.
8+
9+
{{ if .System }}# User Preamble
10+
{{ .System }}
11+
{{- end }}
12+
13+
## Available Tools
14+
Here is a list of tools that you have available to you:
15+
{{- range .Tools }}
16+
17+
```python
18+
def {{ .Function.Name }}(
19+
{{- range $name, $property := .Function.Parameters.Properties }}{{ $name }}: {{ $property.Type }}, {{ end }}) -> List[Dict]:
20+
'''{{ .Function.Description }}
21+
22+
{{- if .Function.Parameters.Properties }}
23+
24+
Args:
25+
{{- range $name, $property := .Function.Parameters.Properties }}
26+
{{ $name }} ({{ $property.Type }}): {{ $property.Description }}
27+
{{- end }}
28+
{{- end }}
29+
'''
30+
pass
31+
```
32+
{{- end }}
33+
{{- else if .System }}{{ .System }}
34+
{{- end }}<|END_OF_TURN_TOKEN|>
35+
{{- end }}
36+
{{- range .Messages }}
37+
{{- if eq .Role "system" }}
38+
{{- continue }}
39+
{{- end }}<|START_OF_TURN_TOKEN|>
40+
{{- if eq .Role "user" }}<|USER_TOKEN|>{{ .Content }}
41+
{{- if $.Tools }}<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>Write 'Action:' followed by a json-formatted list of actions that you want to perform in order to produce a good response to the user's last input. You can use any of the supplied tools any number of times, but you should aim to execute the minimum number of necessary actions for the input. You should use the `directly-answer` tool if calling the other tools is unnecessary. The list of actions you want to call should be formatted as a list of json objects, for example:
42+
```json
43+
[
44+
{
45+
"tool_name": title of the tool in the specification,
46+
"parameters": a dict of parameters to input into the tool as they are defined in the specs, or {} if it takes no parameters
47+
}
48+
]```
49+
{{- end }}
50+
{{- else if eq .Role "assistant" }}<|CHATBOT_TOKEN|>
51+
{{- if .Content }}{{ .Content }}
52+
{{- else if .ToolCalls }}
53+
Action: ```json
54+
[
55+
{{- range .ToolCalls }}
56+
{
57+
"tool_name": "{{ .Function.Name }}",
58+
"parameters": {{ .Function.Arguments }}
59+
}
60+
{{- end }}
61+
]```
62+
{{- end }}
63+
{{- else if eq .Role "tool" }}<|SYSTEM_TOKEN|><results>
64+
console_output: {{ .Content }}
65+
</results>
66+
{{- end }}<|END_OF_TURN_TOKEN|>
67+
{{- end }}<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>

‎template/command-r.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"stop": [
3+
"<|START_OF_TURN_TOKEN|>",
4+
"<|END_OF_TURN_TOKEN|>"
5+
]
6+
}

‎template/index.json

+4
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,9 @@
138138
{
139139
"template": "{% for message in messages %}{% if message['role'] == 'system' %}{% if message['content']%}{{'### System:\n' + message['content']+'\n\n'}}{% endif %}{% elif message['role'] == 'user' %}{{'### User:\n' + message['content']+'\n\n'}}{% elif message['role'] == 'assistant' %}{{'### Assistant:\n' + message['content']}}{% endif %}{% if loop.last and add_generation_prompt %}{{ '### Assistant:\n' }}{% endif %}{% endfor %}",
140140
"name": "solar-instruct"
141+
},
142+
{
143+
"template": "{{ bos_token }}{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% elif false == true %}{% set loop_messages = messages %}{% set system_message = 'You are Command-R, a brilliant, sophisticated, AI-assistant trained to assist human users by providing thorough responses. You are trained by Cohere.' %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% if system_message != false %}{{ '<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>' + system_message + '<|END_OF_TURN_TOKEN|>' }}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% set content = message['content'] %}{% if message['role'] == 'user' %}{{ '<|START_OF_TURN_TOKEN|><|USER_TOKEN|>' + content.strip() + '<|END_OF_TURN_TOKEN|>' }}{% elif message['role'] == 'assistant' %}{{ '<|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>' + content.strip() + '<|END_OF_TURN_TOKEN|>' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>' }}{% endif %}",
144+
"name": "command-r"
141145
}
142146
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>You are a helpful assistant.<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|USER_TOKEN|>Hello, how are you?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>I'm doing great. How can I help you today?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|USER_TOKEN|>I'd like to show off how chat templating works!<|END_OF_TURN_TOKEN|><|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<|START_OF_TURN_TOKEN|><|USER_TOKEN|>Hello, how are you?<|END_OF_TURN_TOKEN|><|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<|START_OF_TURN_TOKEN|><|USER_TOKEN|>Hello, how are you?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>I'm doing great. How can I help you today?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|USER_TOKEN|>I'd like to show off how chat templating works!<|END_OF_TURN_TOKEN|><|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>

0 commit comments

Comments
 (0)
Please sign in to comment.