Best latest baseline cardiology model available today
Since the topic relates to the medical field, I recommend also asking your question on the Hugging Science Discord. (Detailed version)
As of March 18, 2026 , the best baseline to start a small cardiology use case with is MedGemma 1.5 4B Instruct. Google released MedGemma 1.5 in January 2026 as the updated medical model in the MedGemma line, and its Hugging Face collection was updated 6 days ago , so it is still the most current major open medical foundation-model option in this family. (Google Research)
The direct recommendation
Use google/medgemma-1.5-4b-it as your starting point. It is the best first baseline because it is a medical-native , current , compute-efficient , multimodal model that was explicitly positioned as an adaptable starting point for healthcare developers , not as a fixed demo model. Google’s own model documentation says MedGemma 1.5 4B is meant to be a compute-efficient starting point, small enough to run offline, and that developers are expected to fine-tune it for their specific use case. (Google Research)
Why this is the best first baseline
Cardiology is not one task. A “cardiology model” may need to handle reports , EHR text , guidelines , patient instructions , scanned documents , ECG images , or raw ECG signals. Broad reviews of clinical LLM use keep finding that there is no single generalist model that works best across a wide range of clinical tasks , and real deployment usually needs task-specific adaptation. That is why the best first choice is not the most exotic cardiology-specific model. It is the strongest practical medical foundation model that can be adapted cleanly. (JMIR)
MedGemma 1.5 4B fits that role unusually well. Its published capabilities include medical document understanding , EHR understanding , improved medical text reasoning, and multimodal medical comprehension. Those are exactly the abilities that matter for many early cardiology projects such as discharge-summary QA, cardiology report extraction, registry abstraction, referral triage, guideline lookup, and scanned-note understanding. (Google for Developers)
Its benchmark profile also looks like a good baseline profile rather than a narrow demo profile. On Google’s published evaluations, MedGemma 1.5 4B improved over MedGemma 1 4B on MedQA and MedMCQA , reached 89.6 on EHRQA , and showed strong document extraction results on raw PDF-to-JSON medical-report tasks, including 91.0 macro F1 on one internal raw-PDF evaluation. Those numbers do not mean it is “solved.” They do mean it is already strong in the exact workflow categories where small healthcare pilots usually begin. (Hugging Face)
Why not start with a larger model first
If you only care about text and have enough compute, MedGemma 27B text-only is stronger on text benchmarks. Google’s model card says it is trained exclusively on medical text, and its published numbers beat the 4B model on text tasks such as MedQA and EHRNoteQA. But that is not the same as being the best baseline. A baseline is supposed to be fast to test, cheap to adapt, and broad enough for the first iteration. The 27B model is better viewed as the upgrade path after the first prototype works. (Hugging Face)
So the rule is simple:
- Best first baseline for most small cardiology projects: MedGemma 1.5 4B Instruct. (Hugging Face)
- Best next step if the project is purely text and you want more accuracy: MedGemma 27B text-only. (Hugging Face)
The one big exception
If your cardiology use case is raw ECG waveform modeling , then MedGemma is not the right first choice. In that case, start with ECGFounder instead. ECGFounder was trained on over 10 million ECGs with 150 label categories , was designed to work both out of the box and through downstream fine-tuning, and was built specifically for ECG analysis across multiple domains, including lower-rank and single-lead settings. For ECG classification, arrhythmia detection, or signal-level transfer learning, that is the more appropriate baseline. (arXiv)
What this means in plain English
If your first cardiology project looks like any of these:
- extract structured fields from cardiology reports,
- answer questions from cardiology notes or discharge summaries,
- build a guideline-grounded assistant,
- summarize or rewrite cardiology documentation,
- handle mixed text-plus-document inputs,
then start with MedGemma 1.5 4B Instruct. Its shape matches those tasks well, and recent cardiology RAG work also shows that strong retrieval plus a good medical base model is a very effective pattern for cardiology knowledge tasks. (Hugging Face)
If your first project is instead:
- ECG waveform classification,
- signal-level prediction,
- wearable/single-lead ECG transfer,
- ECG representation learning,
then start with ECGFounder. (arXiv)
Final answer
If you want one model name to begin with, use:
MedGemma 1.5 4B Instruct
That is the best latest practical baseline for a small cardiology use case today because it is current, medical, multimodal, efficient, and intended to be adapted to real healthcare tasks. If your project is specifically raw ECG , switch to ECGFounder immediately. (Google Research)
Discussion in the ATmosphere