Views
No views yet
| Model ID | File Name | Description |
|---|---|---|
| BD | builder1_mode1l1abW512_1_11211z1p1rt_.h5 | Builder-based architecture model |
| CC | best_moderRl_RHID2_1mo.h5 | Encoder-concatenation-based configuration |
| FL | bestac22_mode3l_512m2_m21.h5 | Feature-level fusion-based model |
| NA | direct7_11ag23f11.h5 | Direct training baseline model |
| TA | best_modelaf2ndab7_221ag12g11.h5 | traditional augmentation configuration model |


.h5 file directly:1import tensorflow as tf
2
3# Load the model
4model = tf.keras.models.load_model("model.h5", compile=False)
5
6# Run inference
7output = model.predict(input_data)input_data refers to a CT image, and the corresponding T1-weighted (T1w) image is produced as the output.1@article{ilyas2025pymeal,
2 title={pyMEAL: A Multi-Encoder Augmentation-Aware Learning for Robust and Generalizable Medical Image Translation},
3 author={Ilyas, Abdul-mojeed Olabisi and Maradesa, Adeleke and Banzi, Jamal and Huang, Jianpan and Mak, Henry KF and Chan, Kannie WY},
4 journal={arXiv preprint arXiv:2505.24421},
5 year={2025}
6}