- 綠色版查看
- 綠色版查看
- 綠色版查看
- 綠色版查看
- 綠色版查看
官方核心渠道
Nous Research GitHub 主頁(Hermes 系列官方發布源)
地址:https://github.com/NousResearch
包含所有 Hermes 模型(Hermes 1/2/3/4)的技術文檔、更新日志與開發計劃
Hermes Agent(自改進 AI 代理)專屬倉庫:https://github.com/NousResearch/hermes-agent
Hermes 官方 Hugging Face 組織頁(模型權重官方托管)
地址:https://huggingface.co/NousResearch
包含所有 Hermes 系列模型的完整權重、量化版本與模型卡片
主流模型入口:
Hermes 3(最新版):https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B
Hermes 2:https://huggingface.co/NousResearch/Nous-Hermes-2-Llama-2-70B
下載方式詳解
1. Ollama 快速下載(推薦,適合本地部署)
Ollama 已內置 Hermes 系列模型,一行命令即可完成下載與運行:
表格
模型版本 下載命令 說明
Hermes 3(8B) ollama pull hermes3:8b 輕量版,適合消費級 GPU
Hermes 3(70B) ollama pull hermes3:70b 完整版,性能更強
Hermes 2(經典版) ollama pull nous-hermes 基于 Llama 2 的穩定版
Hermes 3(Llama 3.2 3B) ollama pull hermes3:3b-llama3.2-fp16 超輕量實驗版
運行命令:ollama run hermes3:8b(自動下載 + 啟動對話)
Ollama 安裝:https://ollama.com/download(支持 Windows/Mac/Linux)
2. Hugging Face 下載(適合開發與微調)
通過 Hugging Face Hub 獲取完整模型權重,支持 Transformers 直接加載:
方法 A:網頁手動下載
訪問目標模型 Hugging Face 頁面(如 Hermes 3 8B)
點擊Files and versions標簽
下載safetensors權重文件(推薦)或完整模型包
方法 B:命令行批量下載(Git LFS)
bash
運行
# 安裝Git LFS
git lfs install
# 克隆模型倉庫(以Hermes 3 8B為例)
git clone https://huggingface.co/NousResearch/Hermes-3-Llama-3.1-8B
方法 C:Python 代碼自動加載(推薦)
python
運行
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "NousResearch/Hermes-3-Llama-3.1-8B"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
load_in_4bit=True, # 4位量化,節省顯存
device_map="auto"
)
3. 第三方量化版本(適合低顯存設備)
由 TheBloke 等社區開發者提供 GGUF/GPTQ 量化版,兼容 llama.cpp、text-generation-webui 等工具:
GGUF 量化版(llama.cpp/LM Studio):https://huggingface.co/TheBloke/Hermes-3-Llama-3.1-8B-GGUF
GPTQ 量化版(text-generation-webui):https://huggingface.co/TheBloke/Hermes-3-Llama-3.1-8B-GPTQ
關鍵使用提示
Hermes 采用ChatML 格式(<|system|> <|user|> <|assistant|>),與之前提供的提示詞模板完全兼容
工具調用能力需通過特定系統提示詞啟用,推薦使用官方示例模板
模型許可證遵循基座模型協議(Llama 3 需申請 Meta 商用授權)
本地部署建議:8B 模型需≥8GB 顯存,70B 模型需≥24GB 顯存(量化版可降低要求)
Hermes更新日志:
1. 優化的腳步從未停止!
2. 更多小驚喜等你來發現~
華軍小編推薦:
Hermes作為辦公軟件里面十分出色的軟件,小編強力向您推薦,下載了就知道有多好。小編還為您準備了今目標、漢王考勤管理系統、愛莫腦圖、NTKO 大文件上傳控件、快刀客平臺軟件



























您的評論需要經過審核才能顯示
有用
有用
有用