71 Downloads Updated 1 year ago
ollama run richardyoung/llama-medx_v32
ollama launch claude --model richardyoung/llama-medx_v32
ollama launch opencode --model richardyoung/llama-medx_v32
ollama launch hermes --model richardyoung/llama-medx_v32
ollama launch openclaw --model richardyoung/llama-medx_v32
A medical-domain language model built on Meta Llama 3.1 8B, fine-tuned for clinical reasoning and medical question answering. Quantized to GGUF for efficient local inference via Ollama.
llama-medx_v32 is an Ollama packaging of skumar9/Llama-medx_v3.2, a medical large language model derived from Meta Llama 3.1 8B. The base model was adapted to the medical domain using Supervised Fine-Tuning (SFT) followed by Odds Ratio Preference Optimization (ORPO), with hyperparameter strategies designed to align it with medical terminology and reasoning while mitigating catastrophic forgetting. It was further fine-tuned for answering medical multiple-choice questions.
This build is not an abliterated or uncensored model, it retains the safety behavior of its base. It is intended for medical research and education only.
ollama run command, even on modest hardware.| Tag | Size | Context | Notes |
|---|---|---|---|
latest |
2.0 GB | 128K | Low-bit GGUF quant of the 8B medical model |
Only the
latesttag is published (model weights blob = 2,019,377,376 bytes ≈ 2.0 GB). For an 8B-parameter Llama 3.1 model this size corresponds to an aggressive ~2-bit (Q2_K-class) quantization, chosen to keep the footprint small. Expect some quality trade-off versus the full-precision base; for higher fidelity, run the original skumar9/Llama-medx_v3.2 weights or a higher-bit quant.
ollama run richardyoung/llama-medx_v32
curl http://localhost:11434/api/chat -d '{
"model": "richardyoung/llama-medx_v32",
"messages": [
{ "role": "user", "content": "Explain the pathophysiology of type 2 diabetes." }
]
}'
import ollama
response = ollama.chat(
model="richardyoung/llama-medx_v32",
messages=[{"role": "user", "content": "Explain the pathophysiology of type 2 diabetes."}],
)
print(response["message"]["content"])
import ollama from "ollama";
const response = await ollama.chat({
model: "richardyoung/llama-medx_v32",
messages: [
{ role: "user", content: "Explain the pathophysiology of type 2 diabetes." },
],
});
console.log(response.message.content);
All use cases are for research and educational purposes only. See the Medical Disclaimer below.
| VRAM | Performance |
|---|---|
| 4 GB | Runs the ~2.0 GB quant with reduced context |
| 6 GB | Comfortable at moderate context |
| 8 GB+ | Full context and higher throughput |
CPU-only inference is possible thanks to the small quant size; roughly 4–6 GB of free system RAM is recommended.
This model is provided for research and educational purposes only.
By using this model you accept full responsibility for how its outputs are used and agree that the maintainers and base-model authors bear no liability for any outcome.
Built & maintained by Richard Young · DeepNeuro