Views
No views yet
HybridGNet), combining convolutional encoders with graph-based decoders. For full usage and code, see the GitHub repository.1from models.HybridGNet2IGSC import HybridGNetHF
2
3device = "cuda" # or "cpu"
4model = HybridGNetHF.from_pretrained(
5 "mcosarinsky/CheXmask-U",
6 subfolder="v1_skip",
7 device=device
8)
9
10# xray_image: tensor or suitable input
11landmarks, _, _ = model(xray_image)1@misc{cosarinsky2025chexmaskuquantifyinguncertaintylandmarkbased,
2 title={CheXmask-U: Quantifying uncertainty in landmark-based anatomical segmentation for X-ray images},
3 author={Matias Cosarinsky and Nicolas Gaggion and Rodrigo Echeveste and Enzo Ferrante},
4 year={2025},
5 eprint={2512.10715},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2512.10715},
9}