Open AnalogJ opened 1 year ago
https://ollama.ai/library/meditron
- Medical exam question answering
- Supporting differential diagnosis
- Disease information (symptoms, cause, treatment) query
- General health information query
Looking into using Meditron with Langchain for local-hosted embedding (semantic record search) and Q&A
Other med LLM's incl. Gatortron, cui2vec, some others
Some private GPTs:
https://ollama.ai/library/meditron
- outperforms Med-PaLM, GPT 3.5 "on many medical reasoning tasks."
Just want to point out that the model I talk about above is Med-PaLM 2, not Med-PaLM. Would be curious to see how well meditron performs against them but since meditron its self-hostable that's a huge advantage.
Been experimenting with Q&A and RAG in a PWA, just wanted to point our a handy resource I've found. I've modified and adapted the Vector Storage npm package to act as a simple Vector Index to help do similarity search across stored vectors. It uses cosine similarity and essentially iterates over vectors stored in memory. I've found at the scale of data usually stored in a PHR this is really fast and manageable.
Meditron "is within 5% of GPT-4 and 10% of Med-PaLM-2" (worse in performance across benchmarks). Paper here
Nice, thanks for sharing. Curious about any accuracy measures/observations you've found on your approach. Previously experimented on similar using Synthea data and performance was OK but also lacking, don't think I've tried this on my own data yet.
Investigate:
Notes from @cfu288's analysis of MedPaLM 2LLM paper