Improve model card: Add pipeline tag, correct base model, and add code/project links
Browse filesThis PR significantly improves the model card for Hermes 4 14B by:
1. **Adding `pipeline_tag: text-generation` to the metadata**: This correctly categorizes the model as a generative language model, improving its discoverability on the Hugging Face Hub (e.g., https://huggingface.co/models?pipeline_tag=text-generation).
2. **Correcting `base_model` in metadata**: Updated `base_model` from `NousResearch/Hermes-4-14B` to `Qwen-3-14B` to accurately reflect that the model is based on Qwen 3 14B, as stated in its description.
3. **Enhancing paper link**: Added the official Hugging Face Papers link for the "Hermes 4 Technical Report" alongside the existing arXiv link, offering users more options to access the paper.
4. **Adding GitHub Repository link**: Included a new "Code" section with a link to the official GitHub repository for Hermes 4 (`https://github.com/NousResearch/Hermes-4`), providing easy access to the source code.
5. **Adding dedicated Project Page section**: Elevated the link to the Hermes 4 collection on Hugging Face to its own "Project Page" section for better visibility and navigation, and removed the redundant link from the "Quantized / Smaller Variants" section.
No changes were made to the existing `transformers` usage example as it is correct and valid.
@@ -1,7 +1,11 @@
|
|
1 |
---
|
|
|
|
|
2 |
language:
|
3 |
- en
|
|
|
4 |
license: apache-2.0
|
|
|
5 |
tags:
|
6 |
- Qwen-3-14B
|
7 |
- instruct
|
@@ -18,9 +22,6 @@ tags:
|
|
18 |
- long context
|
19 |
- roleplaying
|
20 |
- chat
|
21 |
-
base_model:
|
22 |
-
- NousResearch/Hermes-4-14B
|
23 |
-
library_name: transformers
|
24 |
widget:
|
25 |
- example_title: Hermes 4
|
26 |
messages:
|
@@ -42,12 +43,19 @@ model-index:
|
|
42 |
|
43 |
Hermes 4 14B is a frontier, hybrid-mode **reasoning** model based on Qwen 3 14B by Nous Research that is aligned to **you**.
|
44 |
|
45 |
-
Read the Hermes 4 technical report here:
|
46 |
|
47 |
Chat with Hermes in Nous Chat: https://chat.nousresearch.com
|
48 |
|
49 |
Training highlights include a newly synthesized post-training corpus emphasizing verified reasoning traces, massive improvements in math, code, STEM, logic, creativity, and format-faithful outputs, while preserving general assistant quality and broadly neutral alignment.
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
## What’s new vs Hermes 3
|
53 |
|
@@ -202,9 +210,6 @@ GGUF (Courtesy of LM Studio team!):
|
|
202 |
|
203 |
Hermes 4 is also available in larger sizes (e.g., 70B, 405B) with similar prompt formats.
|
204 |
|
205 |
-
See the Hermes 4 collection to explore them all:
|
206 |
-
https://huggingface.co/collections/NousResearch/hermes-4-collection-68a731bfd452e20816725728
|
207 |
-
|
208 |
# How to cite
|
209 |
|
210 |
```bibtex
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- Qwen-3-14B
|
4 |
language:
|
5 |
- en
|
6 |
+
library_name: transformers
|
7 |
license: apache-2.0
|
8 |
+
pipeline_tag: text-generation
|
9 |
tags:
|
10 |
- Qwen-3-14B
|
11 |
- instruct
|
|
|
22 |
- long context
|
23 |
- roleplaying
|
24 |
- chat
|
|
|
|
|
|
|
25 |
widget:
|
26 |
- example_title: Hermes 4
|
27 |
messages:
|
|
|
43 |
|
44 |
Hermes 4 14B is a frontier, hybrid-mode **reasoning** model based on Qwen 3 14B by Nous Research that is aligned to **you**.
|
45 |
|
46 |
+
Read the Hermes 4 technical report here: [Hermes 4 Technical Report (arXiv)](https://arxiv.org/abs/2508.18255) | [Hermes 4 Technical Report (Hugging Face Papers)](https://huggingface.co/papers/2508.18255)
|
47 |
|
48 |
Chat with Hermes in Nous Chat: https://chat.nousresearch.com
|
49 |
|
50 |
Training highlights include a newly synthesized post-training corpus emphasizing verified reasoning traces, massive improvements in math, code, STEM, logic, creativity, and format-faithful outputs, while preserving general assistant quality and broadly neutral alignment.
|
51 |
|
52 |
+
## Project Page
|
53 |
+
|
54 |
+
Explore the full Hermes 4 collection on the Hugging Face Hub: [Hermes 4 Collection](https://huggingface.co/collections/NousResearch/hermes-4-collection-68a731bfd452e20816725728)
|
55 |
+
|
56 |
+
## Code
|
57 |
+
|
58 |
+
The official GitHub repository for Hermes 4 can be found here: [https://github.com/NousResearch/Hermes-4](https://github.com/NousResearch/Hermes-4)
|
59 |
|
60 |
## What’s new vs Hermes 3
|
61 |
|
|
|
210 |
|
211 |
Hermes 4 is also available in larger sizes (e.g., 70B, 405B) with similar prompt formats.
|
212 |
|
|
|
|
|
|
|
213 |
# How to cite
|
214 |
|
215 |
```bibtex
|