皮皮鲁

皮皮鲁

采用区块链技术建立的个人博客

本地部署Llama3中文版並進行測試

中文微調版 Llama 3 
隨著 Meta 發布 Llama 3 新一代最強勁開源大模型,在 Hugging Face 開源社區湧現了不少中文微調版 Llama 3,如下圖所示:

image

同時,也整理下目前的中文版 Llama 3 大模型列表,如下面鏈接:

聯通微調版:https://www.modelscope.cn/models/UnicomAI/Unichat-llama3-Chinese/summary

Openbuddy 微調版:https://www.modelscope.cn/models/OpenBuddy/openbuddy-llama3-8b-v21.1-8k/summary

zhichen 微調版:https://github.com/seanzhang-zhichen/llama3-chinese

Rookie 微調版:https://github.com/Rookie1019/Llama-3-8B-Instruct-Chinese

shareAI-V1:https://opencsg.com/models/shareAI/llama3-Chinese-chat-8b

shareAI-V2:https://modelscope.cn/models/baicai003/Llama3-Chinese_v2/summary

Ollama 部署中文微調版 Llama 3 

經過對比和測試,我們選擇 Hugging Face 社區的 zhouzr/Llama3-8B-Chinese-Chat-GGU F 模型,推薦下載使用 q4_k_m 版本:

image

第一步、將下載的 GGUF 大模型上傳到指定位置,編寫 Modelfile。

FROM ./Llama3-8B-Chinese-Chat.q4_k_m.GGUF
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 stop "<|start_header_id|>"
PARAMETER stop "<|end_header_id|>"
PARAMETER stop "<|eot_id|>"
PARAMETER stop "<|reserved_special_token"

第二步、執行 ollama create llama3-Chinese:8B -f Modelfile 創建大模型。

截屏 2024-08-26 10.54.59

(base) [root@localhost my_model]# ollama create llama3-Chinese:8B -f Modelfile
transferring model data
creating model layer
creating template layer
creating parameters layer
creating config layer
using already created layer sha256:74db82a06a038230371e62740a9b430140e4df3a02c5ddcbe97c9bee76d6455e
writing layer sha256:8ab4849b038cf0abc5b1c9b8ee1443dca6b93a045c2272180d985126eb40bf6f
writing layer sha256
writing layer sha256:109fb4827ddd6f21dd04a405dec5e1c9e39cf139e89b98536875a782938c02f5
writing manifest
success

第三步、執行 ollama list 查看,已成功運行。

截屏 2024-08-26 10.52.54

測試中文微調版 Llama 3 

第一、弱智吧問題測試

image

第二、代碼能力測試

image

第三、數學能力測試

image

可以看到,Llama 3 微調版的確強大,推薦大家使用起來!參考:https://mp.weixin.qq.com/s/v6K61fTzaMLS1-wKCHoNWw

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。