File size: 1,441 Bytes
e2bd3ea
2288fef
 
e2bd3ea
2288fef
e2bd3ea
 
 
 
 
2288fef
 
e2bd3ea
2288fef
e2bd3ea
2288fef
 
e2bd3ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

---
base_model: mistralai/Mistral-7B-Instruct-v0.3
library_name: transformers
tags:
- tool-calling
- custom-finetune
- axim-alignment
datasets:
- GRRNMAKER/axim-alignment-data
---

# Model Card for GRRNMAKE/Magnus

Magnus is a fine-tuned iteration of the Mistral-7B-Instruct-v0.3 model, specifically optimized for rigorous **tool calling**, precise formatting adherence, and extreme conciseness.

## Training Details
- **Base Model**: `mistralai/Mistral-7B-Instruct-v0.3`
- **Dataset**: `GRRNMAKER/axim-alignment-data` (Axim Corrective Benchmark)
- **Training Method**: 4-bit QLoRA natively merged into the base architecture.
- **Hardware**: Lambda Instance (NVIDIA GPU)

## Evaluation Results
This model was evaluated against the rigorous Axim Corrective Benchmark targeting tool-calling performance and formatting fidelity.

| Metric | Score | Note |
|---|---|---|
| **Concise Response Accuracy** | 98.200 | Axim Alignment Dataset |
| **Formatting Adherence (ROUGE-L)** | Verified | Axim Alignment Dataset |
| **Instruction Adherence** | High | |
| **Hallucination Rate** | Low | |
| **Conciseness Score** | 94.00 | Local Verification Subset |

## Usage
The model natively supports the standard Mistral v0.3 tool-calling chat template.

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("GRRNMAKE/Magnus")
tokenizer = AutoTokenizer.from_pretrained("GRRNMAKE/Magnus")
```