Views
No views yet
| Quantization | File Size | Use Case |
|---|---|---|
| Q8_0 | ~1.8 GB | High quality, good for GPU |
| Q6_K | ~1.4 GB | Very good quality, balanced |
| Q4_K_M | ~1.0 GB | Good quality/size tradeoff, optimized for CPU |
1# Download a quantized version
2huggingface-cli download bisonnetworking/bison-medical-v3-1.7b-gguf model-Q4_K_M.gguf --local-dir ./models
3
4# Run inference
5./llama.cpp/llama-cli -m ./models/model-Q4_K_M.gguf -p "What are the symptoms of diabetes?"1# Create Modelfile
2cat > Modelfile <<EOF
3FROM ./models/model-Q4_K_M.gguf
4SYSTEM "You are a medical expert assistant. Provide accurate, evidence-based medical information."
5EOF
6
7# Create model
8ollama create bison-medical-v3 -f Modelfile
9
10# Run
11ollama run bison-medical-v3 "What are the symptoms of diabetes?".gguf file from this repository