ignyse commited on
Commit
f50e90f
·
verified ·
1 Parent(s): 1d822e3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: NousResearch/Hermes-4-14B
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: apache-2.0
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - Qwen-3-14B
10
+ - instruct
11
+ - finetune
12
+ - reasoning
13
+ - hybrid-mode
14
+ - chatml
15
+ - function calling
16
+ - tool use
17
+ - json mode
18
+ - structured outputs
19
+ - atropos
20
+ - dataforge
21
+ - long context
22
+ - roleplaying
23
+ - chat
24
+ - llama-cpp
25
+ - gguf-my-repo
26
+ widget:
27
+ - example_title: Hermes 4
28
+ messages:
29
+ - role: system
30
+ content: You are Hermes 4, a capable, neutrally-aligned assistant. Prefer concise,
31
+ correct answers.
32
+ - role: user
33
+ content: Explain the difference between BFS and DFS to a new CS student.
34
+ model-index:
35
+ - name: Hermes-4-Qwen-3-14B
36
+ results: []
37
+ ---
38
+
39
+ # ignyse/Hermes-4-14B-Q4_K_M-GGUF
40
+ This model was converted to GGUF format from [`NousResearch/Hermes-4-14B`](https://huggingface.co/NousResearch/Hermes-4-14B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
41
+ Refer to the [original model card](https://huggingface.co/NousResearch/Hermes-4-14B) for more details on the model.
42
+
43
+ ## Use with llama.cpp
44
+ Install llama.cpp through brew (works on Mac and Linux)
45
+
46
+ ```bash
47
+ brew install llama.cpp
48
+
49
+ ```
50
+ Invoke the llama.cpp server or the CLI.
51
+
52
+ ### CLI:
53
+ ```bash
54
+ llama-cli --hf-repo ignyse/Hermes-4-14B-Q4_K_M-GGUF --hf-file hermes-4-14b-q4_k_m.gguf -p "The meaning to life and the universe is"
55
+ ```
56
+
57
+ ### Server:
58
+ ```bash
59
+ llama-server --hf-repo ignyse/Hermes-4-14B-Q4_K_M-GGUF --hf-file hermes-4-14b-q4_k_m.gguf -c 2048
60
+ ```
61
+
62
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
63
+
64
+ Step 1: Clone llama.cpp from GitHub.
65
+ ```
66
+ git clone https://github.com/ggerganov/llama.cpp
67
+ ```
68
+
69
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
70
+ ```
71
+ cd llama.cpp && LLAMA_CURL=1 make
72
+ ```
73
+
74
+ Step 3: Run inference through the main binary.
75
+ ```
76
+ ./llama-cli --hf-repo ignyse/Hermes-4-14B-Q4_K_M-GGUF --hf-file hermes-4-14b-q4_k_m.gguf -p "The meaning to life and the universe is"
77
+ ```
78
+ or
79
+ ```
80
+ ./llama-server --hf-repo ignyse/Hermes-4-14B-Q4_K_M-GGUF --hf-file hermes-4-14b-q4_k_m.gguf -c 2048
81
+ ```