Visit https://exchange-ai.uni-muenster.de, for an installation free demo version.
Install the end-to-end platform: Installation.
See a full introduction here.
Example data is available in this repository under example_data.zip.
You can upload data and labels on the side modal, and select or upload models on the model exchange. The side modal is accesible via top right menu, and the model exchange under Model ExChanGe.
The Model ExChanGe contains local (Prediction, Training) and downloaded, external models are available under ExChanGe. The models are marked with an "*" for easier differentiation.
- Load the dataset and labels in the modal
- Open the
Finetunetab - Select a fitting base model
- Choose a finetuning method
- Set a meaningful name
- accept the terms
- Click
Finetune
- We are compatible with pytorch
.ptand ONNX.onnxmodels. - Any classification layer with
headin its name, will be trained with the option:finetuning (head). - For ONNX, we require the batch size to be dynamic during export.
- Pytorch models, if custom, require their definition to be added in the
model_definitionsfolder. (Please inquire a pull request if you want it to be added in regular releases) - The models should contain the attributes as metadata
- target_keys
- standardizer None
If none are given it will be using atribrary keys and no standardizer. Pytorch model should contain them as attributes. It can be added with the following code to ONNX models:
meta = model.metadata_props.add()
meta.key = "target_keys"
meta.value = str(match_keys)
meta = model.metadata_props.add()
meta.key = "standardizer"
meta.value = str("minMax")
@misc{bickmann2025exchangeai,
title={ExChanGeAI: An End-to-End Platform and Efficient Foundation Model for Electrocardiogram Analysis and Fine-tuning},
author={Lucas Bickmann and Lucas Plagwitz and Antonius Büscher and Lars Eckardt and Julian Varghese},
year={2025},
eprint={2503.13570},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2503.13570},
}