Skip to content

Commit

Permalink
feat(Stacking): Implemented ensemble learning technique Stacking
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed May 22, 2022
1 parent 511154b commit 168116f
Show file tree
Hide file tree
Showing 2 changed files with 550 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aucmedi/ensemble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
| ------------------------------------------ | ---------------------------------------------------------------------------------------------------- |
| [Augmenting][aucmedi.ensemble.augmenting] | Inference Augmenting (test-time augmentation) function for augmenting unknown images for prediction. |
| [Bagging][aucmedi.ensemble.bagging] | Cross-Validation based Bagging for equal models trained with different sampling. |
| Stacking | Coming soon. |
| [stacking][aucmedi.ensemble.stacking] | Ensemble of unequal models with a fitted Metalearner stacked on top of it. |
!!! info
![EnsembleLearning_overview](../../images/ensemble.theory.png)
Expand All @@ -48,3 +48,4 @@
#-----------------------------------------------------#
from aucmedi.ensemble.augmenting import predict_augmenting
from aucmedi.ensemble.bagging import Bagging
from aucmedi.ensemble.stacking import Stacking
Loading

0 comments on commit 168116f

Please sign in to comment.