caretMultimodal
Multimodal Late Fusion with 'caret'
Extends the 'caret' framework to support late fusion workflows, enabling users to train models independently across multiple data modalities and combine their predictions into a single meta-model. Designed for developers, data scientists, and biomedical researchers alike, 'caretMultimodal' aims to make late fusion ensemble modelling as accessible and flexible as single-dataset workflows in 'caret'. Late fusion methods are based on Wolpert (1992) <doi:10.1016/S0893-6080(05)80023-1>.
README
<!-- badges: start -->
[](https://app.codecov.io/gh/CompBio-Lab/caretMultimodal)
[](https://github.com/CompBio-Lab/caretMultimodal/actions/workflows/R-CMD-check.yaml)

<!-- badges: end -->
# caretMultimodal
`caretMultimodal` extends the [`caret`](https://github.com/topepo/caret) framework to support
late fusion workflows in R, enabling users to train models independently across multiple data
modalities and combine their predictions into a single meta-model. Designed for R developers,
data scientists, and biomedical researchers, `caretMultimodal` makes late fusion ensemble
modelling as accessible and flexible as single-dataset workflows in `caret`.
**Example late fusion workflow using cross-validation**
<img src="man/figures/CV_workflow.png" width="700" alt="caretMultimodal cross-validation workflow"/>
## Key Features
- Includes all the functionality of `caret`, giving users full control over sampling strategies, training methods, hyperparameter tuning, and more
- Default cross-validation structure with careful handling to prevent data leakage across modalities
- Late fusion ensembling using stacked generalization
- Parallelization for faster training across models and datasets
- Model trimming to reduce memory usage for large ensembles
- Built-in evaluation tools for performance assessment, ROC curves, and variable importance
- Detailed error messages to simplify debugging
## Documentation
Full API documentation is available at [compbio-lab.github.io/caretMultimodal](https://compbio-lab.github.io/caretMultimodal/)
## Installation
The package can be installed using devtools
``` r
devtools::install_github("CompBio-Lab/caretMultimodal")
```
## Acknowledgements
The project structure is inspired by Zach Mayer's [`caretEnsemble`](https://github.com/zachmayer/caretEnsemble) package,
which is used for stacking multiple models on a single dataset.
Versions across snapshots
| Version | Repository | File | Size |
|---|---|---|---|
1.0.0 |
rolling linux/jammy R-4.5 | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
rolling linux/noble R-4.5 | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
rolling source/ R- | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
latest linux/jammy R-4.5 | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
latest linux/noble R-4.5 | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
latest source/ R- | caretMultimodal_1.0.0.tar.gz |
2.4 MiB |
1.0.0 |
2026-04-23 source/ R- | caretMultimodal_1.0.0.tar.gz |
0 B |
Dependencies (latest)
Imports
Suggests
- testthat (>= 3.0.0)
- randomForest
- doParallel