Views
No views yet
BAT_pretrained model trained on the eICU and MIMIC-III datasets. All experiments were conducted using PyTorch 2.4.0+cu118 with Python 3.10.16model.ckpt: PyTorch Lightning checkpoint with the trained model weights.1python -m venv bat-env
2source bat-env/bin/activate # On Linux or macOS
3pip install -r https://raw.githubusercontent.com/Katja-Jagd/YAIB/development/requirements.txt1git clone https://github.com/Katja-Jagd/YAIB.git
2cd YAIB1from icu_benchmarks.models.dl_models.bat import SSL_BAT
2
3model = SSL_BAT.load_from_checkpoint(
4 "https://huggingface.co/Katja-Jagd/bat-pretrained-eicu-mimiciii-base/resolve/main/model.ckpt"
5)
6model.eval()