You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have compiled the ollama from source code with the latest version of llama.cpp, which I think supposedly contains the pull request you made for the latest model right ? But I am also getting the same error.
我下载了文件:Model-7.6B-F16.gguf和mmproj-model-f16.gguf,然后我的模型配置文件为:
FROM ./mmproj-model-f16.gguf
FROM ./Model-7.6B-F16.gguf
TEMPLATE """{{- if .Messages }}$last := eq (len (slice $ .Messages $i)) 1 -}}
{{- range $i, $_ := .Messages }}
{{-
<|im_start|>{{ .Role }}
{{ .Content }}
{{- if $last }}
{{- if (ne .Role "assistant") }}<|im_end|>
<|im_start|>assistant
{{ end }}
{{- else }}<|im_end|>
{{ end }}
{{- end }}
{{- else }}
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
{{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}"""
PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
PARAMETER num_ctx 8192
但我使用命令:ollama create MiniCPM-o -f config.txt后,接着运行命令ollama run MiniCPM-o,出现报错:
Error: llama runner process has terminated: exit status 2
怎么解决???
The text was updated successfully, but these errors were encountered: