This is a 4-bit AWQ (Activation-aware Weight Quantization) quantized version of Hermes 3 - Llama-3.2 3B, a fine-tuned LLM developed by Nous Research. The quantization was performed to improve efficiency while maintaining strong performance, making the model suitable for low-memory devices and inference acceleration.
Hermes 3 3B is a generalist language model fine-tuned from Llama-3.2 3B, with improvements in:
Reasoning
Roleplaying
Function calling & structured outputs
Multi-turn conversation
Long-context coherence
This quantized version retains these enhancements while offering better efficiency.
Performance Benchmarks
The original Hermes 3 3B model achieved strong performance on various benchmarks. While the AWQ quantized version maintains high accuracy, minor variations may occur due to the quantization process. For benchmarking, refer to the original model's results.
Prompt Format
This model follows ChatML formatting, similar to OpenAI's API prompt structure. Example:
python
1messages =[2{"role":"system","content":"You are Hermes 3."},3{"role":"user","content":"Hello, who are you?"}4]5gen_input = tokenizer.apply_chat_template(messages, return_tensors="pt")6model.generate(**gen_input)
This quantization was performed using the AWQ method for LLM optimization. The base model was developed by Nous Research, and quantization was applied to enhance deployment efficiency while preserving model quality.