nous-hermes

General use models based on Llama and Llama 2 from Nous Research.

7b 13b
Hızlı Kurulum (Ollama kuruluysa)
ollama run nous-hermes

Ollama kurulu değil mi? ollama.com/download — Windows, macOS ve Linux için ücretsiz. İlk çalıştırmada model indirilir, sonrası tamamen çevrimdışıdır.

Varyantlar

Boyut büyüdükçe kalite artar, donanım ihtiyacı yükselir. Başlangıç için küçük varyantı deneyin.

EtiketBoyutBağlamGirdiKomut
latest 3.8GB 4K Text ollama run nous-hermes:latest
7b 3.8GB 4K Text ollama run nous-hermes:7b
13b 7.4GB 4K Text ollama run nous-hermes:13b
7b-llama2 3.8GB 4K Text ollama run nous-hermes:7b-llama2
7b-llama2-q2_K 2.8GB 4K Text ollama run nous-hermes:7b-llama2-q2_K
7b-llama2-q3_K_S 2.9GB 4K Text ollama run nous-hermes:7b-llama2-q3_K_S
7b-llama2-q3_K_M 3.3GB 4K Text ollama run nous-hermes:7b-llama2-q3_K_M
7b-llama2-q3_K_L 3.6GB 4K Text ollama run nous-hermes:7b-llama2-q3_K_L
7b-llama2-q4_0 3.8GB 4K Text ollama run nous-hermes:7b-llama2-q4_0
7b-llama2-q4_1 4.2GB 4K Text ollama run nous-hermes:7b-llama2-q4_1
7b-llama2-q4_K_S 3.9GB 4K Text ollama run nous-hermes:7b-llama2-q4_K_S
7b-llama2-q4_K_M 4.1GB 4K Text ollama run nous-hermes:7b-llama2-q4_K_M
7b-llama2-q5_0 4.7GB 4K Text ollama run nous-hermes:7b-llama2-q5_0
7b-llama2-q5_1 5.1GB 4K Text ollama run nous-hermes:7b-llama2-q5_1
7b-llama2-q5_K_S 4.7GB 4K Text ollama run nous-hermes:7b-llama2-q5_K_S
7b-llama2-q5_K_M 4.8GB 4K Text ollama run nous-hermes:7b-llama2-q5_K_M
7b-llama2-q6_K 5.5GB 4K Text ollama run nous-hermes:7b-llama2-q6_K
7b-llama2-q8_0 7.2GB 4K Text ollama run nous-hermes:7b-llama2-q8_0
7b-llama2-fp16 13GB 4K Text ollama run nous-hermes:7b-llama2-fp16
13b-llama2 7.4GB 4K Text ollama run nous-hermes:13b-llama2
13b-llama2-q2_K 5.4GB 4K Text ollama run nous-hermes:13b-llama2-q2_K
13b-llama2-q3_K_S 5.7GB 4K Text ollama run nous-hermes:13b-llama2-q3_K_S
13b-llama2-q3_K_M 6.3GB 4K Text ollama run nous-hermes:13b-llama2-q3_K_M
13b-llama2-q3_K_L 6.9GB 4K Text ollama run nous-hermes:13b-llama2-q3_K_L
13b-llama2-q4_0 7.4GB 4K Text ollama run nous-hermes:13b-llama2-q4_0

38 varyant daha var — tümü için ollama.com.

Model Detayları ve Benchmarklar (kaynak: ollama.com)

Nous Hermes was released by Nous Research. There are two main variants here, a 13B parameter model based on Llama, and a 7B and 13B parameter model based on Llama 2. They are all general-use models trained with the same datasets.

Get started with Nous Hermes

The model used in the example below is the Nous Hermes Llama 2 model, with 7b parameters, which is a general chat model.

API

  1. Start Ollama server (Run ollama serve)
  2. Run the model
curl -X POST http://localhost:11434/api/generate -d '{
  "model": "nous-hermes",
  "prompt":"Explain the process of how a refrigerator works to keep the contents inside cold."
 }'

CLI

  1. Install Ollama
  2. Open the terminal and run ollama run nous-hermes

Note: The ollama run command performs an ollama pull if the model is not already downloaded. To download the model without running it, use ollama pull nous-hermes

Memory requirements

  • 7b models generally require at least 8GB of RAM
  • 13b models generally require at least 16GB of RAM

If you run into issues with higher quantization levels, try using the q4 model or shut down any other programs that are using a lot of memory.

Model variants

Ollama offers many variants of the Nous Hermes model that are quantized based on the official models to run well locally.

Nous Hermes Llama 2 is the original Nous Hermes model based on the original Llama model.

Example: ollama run nous-hermes

Nous Hermes Llama 1 is the original Nous Hermes model based on the original Llama model.

Example: ollama run nous-hermes:13b-q4_0

By default, Ollama uses 4-bit quantization. To try other quantization levels, please try the other tags. The number after the q represents the number of bits used for quantization (i.e. q4 means 4-bit quantization). The higher the number, the more accurate the model is, but the slower it runs, and the more memory it requires.

Aliases
latest, 7b, 7b-llama2, 7b-llama2-q4_0
13b, 13b-llama2, 13b-llama2-q4_0

Model source

Nous Hermes Llama 2 source on Ollama

7b parameters original source: Nous Research

13b parameters original source: Nous Research

Nous Hermes Llama 1 source on Ollama

13b parameters original source: Nous Research