-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
联通的兄弟,在ollama的模型仓库上传一下,或者发一下ollama的modelfile #8
Comments
我是写的 Modefile , 模型可以运行起来
但是它似乎不是很正常(表现很差) 下面是我转换的方法
|
你转换成gguf是不是没指定分词模式?
在上面哪个回复里有写
…----------
该邮件从移动设备发送
--------------原始邮件--------------
发件人:"Rycbar123 ***@***.***>;
发送时间:2024年4月26日(星期五) 晚上11:09
收件人:"UnicomAI/Unichat-llama3-Chinese" ***@***.***>;
抄送:"luffy ***@***.***>;"Author ***@***.***>;
主题:Re: [UnicomAI/Unichat-llama3-Chinese] 联通的兄弟,在ollama的模型仓库上传一下,或者发一下ollama的modelfile (Issue #8)
-----------------------------------
我这也写 Modefile , 模型似乎可以正常运行
FROM converted.bin #TEMPLATE "[INST] {{ .Prompt }} [/INST]" TEMPLATE """{{ if .System }}<|start_header_id|>system<|end_header_id|> {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|> {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|> {{ .Response }}<|eot_id|>""" PARAMETER num_keep 24 PARAMETER stop "<|start_header_id|>" PARAMETER stop "<|end_header_id|>" PARAMETER stop "<|eot_id|>"
但是它似乎不是很正常
image.png (view on web)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
注意: --vocab-type 指定分词算法,默认值是 spm,联通用的是 bpe,需要指定。 上面先转成 F32格式的 GGUF,再执行量化转为F16、Q4_0 测试模型 然后在ollama 中导入模型 Modelfile 内容如下 FROM ./Unichat-llama3-Chinese-8B-28K_Q4.gguf TEMPLATE """ SYSTEM """ """ PARAMETER stop "<|start_header_id|>" PARAMETER repeat_penalty 1.15 导入模型到 Ollama 库 |
按上面导入到OLLAMA 库,我没上传到OLLAMA |
Ollama 社区下载UnicomLLM/Unichat-llama3-Chinese-8B模型
当我 按照 UnicomLLM/Unichat-llama3-Chinese-8B#快速开始的参数设定时,它似乎表现好一点 |
在 #8 (comment) 转换方法,最后面的参数我指定了
|
我添加了参数--vocab-type bpe,报错FileNotFoundError: Could not find any of ['vocab.json'],这个文件是在模型文件中的吗,没找到 |
8b模型和llama3官方模板不一样,参考tokenizer_config.json |
联通的兄弟,在ollama的模型仓库上传一下,或者发一下ollama的modelfile
The text was updated successfully, but these errors were encountered: