mhylle commited on
Commit
04796aa
·
verified ·
1 Parent(s): 06af3be

Add model card

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - de
6
+ library_name: gguf
7
+ base_model: mistralai/Ministral-3-3B-Instruct-2512-BF16
8
+ tags:
9
+ - medical
10
+ - dictation
11
+ - structured-extraction
12
+ - mist-9liner
13
+ - on-device
14
+ - gguf
15
+ - ministral
16
+ pipeline_tag: text-generation
17
+ datasets:
18
+ - custom
19
+ ---
20
+
21
+ # Ministral 3B - MIST 9-Liner Bilingual (GGUF)
22
+
23
+ This is a **GGUF format** export of a fine-tuned Ministral 3B model for medical dictation extraction.
24
+
25
+ ## Model Description
26
+
27
+ - **Base Model**: mistralai/Ministral-3-3B-Instruct-2512-BF16
28
+ - **Training Method**: LoRA (merged with base model)
29
+ - **Languages**: English + German (bilingual)
30
+ - **Task**: Extract structured MIST 9-liner data from medical dictations
31
+ - **Format**: GGUF F16 (for use with llama.cpp)
32
+
33
+ ## Performance Metrics
34
+
35
+ | Metric | Score |
36
+ |--------|-------|
37
+ | JSON Valid | 100% |
38
+ | Schema Compliant | 98% |
39
+ | Avg Field Accuracy | 69.5% |
40
+
41
+ ## Training Details
42
+
43
+ - **Epochs**: 2
44
+ - **Batch Size**: 2 (effective 16 with gradient accumulation)
45
+ - **Learning Rate**: 1.5e-4
46
+ - **Max Sequence Length**: 4096
47
+ - **LoRA Rank**: 16
48
+ - **LoRA Alpha**: 32
49
+
50
+ ## Model Comparison
51
+
52
+ | Model | Size | JSON Valid | Schema | Field Accuracy |
53
+ |-------|------|------------|--------|----------------|
54
+ | **Ministral 3B** | 6.4GB | 100% | 98% | 69.5% |
55
+ | Gemma3 270M | 536MB | 99% | 96% | 68.7% |
56
+
57
+ ## Intended Use
58
+
59
+ This model is designed for on-device deployment to extract structured MIST 9-liner information from medical dictation text. The MIST 9-liner format includes:
60
+
61
+ 1. **M**echanism of injury
62
+ 2. **I**njury pattern
63
+ 3. **S**igns and symptoms
64
+ 4. **T**reatment given
65
+ 5. Vital signs (5 fields)
66
+
67
+ ## Usage with llama.cpp
68
+
69
+ ```bash
70
+ # Download the GGUF file
71
+ huggingface-cli download mhylle/ministral-3b-mist-9liner-bilingual-gguf ministral-3b-mist-bilingual-f16.gguf
72
+
73
+ # Run inference
74
+ ./llama-cli -m ministral-3b-mist-bilingual-f16.gguf -p "<prompt>"
75
+ ```
76
+
77
+ ## Limitations
78
+
79
+ - Optimized for MIST 9-liner format specifically
80
+ - Best performance with clear, structured dictation input
81
+ - Trained on synthetic/curated medical dictation data
82
+ - Larger model size (6.4GB) may require more memory than smaller alternatives
83
+
84
+ ## Model Card Contact
85
+
86
+ For questions or issues, please open a GitHub issue on the project repository.