Text Generation
GGUF
English
German
medical
dictation
structured-extraction
mist-9liner
on-device
ministral
conversational
Instructions to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16 # Run inference directly in the terminal: llama cli -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16 # Run inference directly in the terminal: llama cli -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16 # Run inference directly in the terminal: ./llama-cli -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Use Docker
docker model run hf.co/mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
- LM Studio
- Jan
- vLLM
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mhylle/ministral-3b-mist-9liner-bilingual-gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mhylle/ministral-3b-mist-9liner-bilingual-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
- Ollama
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with Ollama:
ollama run hf.co/mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
- Unsloth Desktop
- Pi
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with Docker Model Runner:
docker model run hf.co/mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
- Lemonade
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Run and chat with the model
lemonade run user.ministral-3b-mist-9liner-bilingual-gguf-F16
List all available models
lemonade list
- Hermes Agent
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mhylle/ministral-3b-mist-9liner-bilingual-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mhylle/ministral-3b-mist-9liner-bilingual-gguf:F16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add model card
Browse files
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.
|