Views
No views yet
| Dataset | Checkpoint | Input | Classes |
|---|---|---|---|
| ACDC | best_model_acdc_no_anatomical.pth | Five adjacent slices, 2.5D | Background, RV, MYO, LV |
| M&Ms | best_model_mnm.pth | Five adjacent slices, 2.5D | Background, LV, MYO, RV |
| SCD | best_model_scd.pth | Five adjacent slices, 2.5D | Background, LV |
state_dict objects. They must be used with the model implementation and preprocessing pipeline provided in the official GitHub repository.best_model_acdc_no_anatomical.pth is the official ACDC checkpoint used for the reported evaluation. The original filename is retained for reproducibility and traceability with the experimental setup.pip install --upgrade huggingface_hub1hf download QuocKhanhLuong/PGE-UNet \
2 best_model_acdc_no_anatomical.pth \
3 best_model_mnm.pth \
4 best_model_scd.pth \
5 SHA256SUMS \
6 --local-dir weights1git clone https://github.com/QuocKhanhLuong/PGE-UNet.git
2cd PGE-UNet1python scripts/evaluate_acdc.py \
2 --weights weights/best_model_acdc_no_anatomical.pth1python scripts/evaluate_mnm.py \
2 --weights weights/best_model_mnm.pth1python scripts/evaluate_scd.py \
2 --weights weights/best_model_scd.pth1@article{trannguyen2026pgeunet,
2 title = {Integrating physics guidance into deep learning for cine cardiovascular segmentation},
3 author = {Tran-Nguyen, My Anh and Luong, Quoc Khanh and Kha, Minh Bao and Dang, Tuan Linh},
4 journal = {Computerized Medical Imaging and Graphics},
5 volume = {134},
6 pages = {102798},
7 year = {2026},
8 doi = {10.1016/j.compmedimag.2026.102798},
9 url = {https://doi.org/10.1016/j.compmedimag.2026.102798}
10}