Skip to content

Commit

Permalink
feat(Metalearner): Started working on Metalearners for later usage in…
Browse files Browse the repository at this point in the history
… Stacking
  • Loading branch information
muellerdo committed May 20, 2022
1 parent c984578 commit 7014130
Show file tree
Hide file tree
Showing 2 changed files with 186 additions and 0 deletions.
69 changes: 69 additions & 0 deletions aucmedi/ensemble/metalearner/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#==============================================================================#
# Author: Dominik Müller #
# Copyright: 2022 IT-Infrastructure for Translational Medical Research, #
# University of Augsburg #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
#==============================================================================#
#-----------------------------------------------------#
# Documentation #
#-----------------------------------------------------#
""" Library of implemented Aggregate functions in AUCMEDI.
An Aggregate function can be passed to an Ensemble and merges multiple class predictions
into a single prediction.
```
Ensembled predictions encoded in a NumPy Matrix with shape (N_models, N_classes).
Example: [[0.5, 0.4, 0.1],
[0.4, 0.3, 0.3],
[0.5, 0.2, 0.3]]
-> shape (3, 3)
Merged prediction encoded in a NumPy Matrix with shape (1, N_classes).
Example: [[0.4, 0.3, 0.3]]
-> shape (1, 3)
```
???+ example "Example"
```python
# Recommended: Apply an Ensemble like Augmenting (test-time augmentation) with Majority Vote
preds = predict_augmenting(model, test_datagen, n_cycles=5, aggregate="majority_vote")
# Manual: Apply an Ensemble like Augmenting (test-time augmentation) with Majority Vote
from aucmedi.ensemble.aggregate import Majority_Vote
my_agg = Majority_Vote()
preds = predict_augmenting(model, test_datagen, n_cycles=5, aggregate=my_agg)
```
Aggregate functions are based on the abstract base class [Aggregate_Base][aucmedi.ensemble.aggregate.agg_base.Aggregate_Base],
which allow simple integration of custom aggregate methods for Ensemble.
"""
#-----------------------------------------------------#
# Library imports #
#-----------------------------------------------------#
# Import aggregate functions
from aucmedi.ensemble.aggregate.averaging_mean import Averaging_Mean
from aucmedi.ensemble.aggregate.averaging_median import Averaging_Median
from aucmedi.ensemble.aggregate.majority_vote import Majority_Vote
from aucmedi.ensemble.aggregate.softmax import Softmax

#-----------------------------------------------------#
# Access Functions to Aggregate Functions #
#-----------------------------------------------------#
aggregate_dict = {"mean": Averaging_Mean,
"median": Averaging_Median,
"majority_vote": Majority_Vote,
"softmax": Softmax}
""" Dictionary of implemented Aggregate functions. """
117 changes: 117 additions & 0 deletions aucmedi/ensemble/metalearner/ml_base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
#==============================================================================#
# Author: Dominik Müller #
# Copyright: 2022 IT-Infrastructure for Translational Medical Research, #
# University of Augsburg #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
#==============================================================================#
#-----------------------------------------------------#
# Library imports #
#-----------------------------------------------------#
# External libraries
from abc import ABC, abstractmethod

#-----------------------------------------------------#
# Abstract Base Class for Metalearner #
#-----------------------------------------------------#
class Metalearner_Base(ABC):
""" An abstract base class for a Metalearner class.
Metaleaner are similar to [aggregate functions][aucmedi.ensemble.aggregate],
however metaleaners are models which are trained before usage.
Metaleaners are utilized in [Stacking][aucmedi.ensemble.stacking] pipelines.
A Metaleaner act as combiner algorithm which is trained to make a final prediction
using predictions of the other algorithms (Neural_Networks) as inputs.
```
Ensembled predictions encoded in a NumPy Matrix with shape (N_models, N_classes).
Example: [[0.5, 0.4, 0.1],
[0.4, 0.3, 0.3],
[0.5, 0.2, 0.3]]
-> shape (3, 3)
Merged prediction encoded in a NumPy Matrix with shape (1, N_classes).
Example: [[0.4, 0.3, 0.3]]
-> shape (1, 3)
```
???+ example "Create a custom Metaleaner class"
```python
from aucmedi.ensemble.aggregate.agg_base import Aggregate_Base
class My_custom_Aggregate(Aggregate_Base):
def __init__(self): # you can pass class variables here
pass
def aggregate(self, preds):
preds_combined = np.mean(preds, axis=0) # do some combination operation
return preds_combined # return combined predictions
```
!!! info "Required Functions"
| Function | Description |
| ------------------- | ---------------------------------------------------------- |
| `__init__()` | Object creation function. |
| `training()` | Fit Metaleaner model. |
| `prediction()` | Merge multiple class predictions into a single prediction. |
| `dump()` | Store Metaleaner model to disk. |
| `load()` | Load Metaleaner model from disk. |
"""
#---------------------------------------------#
# Initialization #
#---------------------------------------------#
@abstractmethod
def __init__(self):
""" Initialization function which will be called during the Aggregation object creation.
This function can be used to pass variables and options in the Aggregation instance.
The are no mandatory required parameters for the initialization.
"""
pass

#---------------------------------------------#
# Training #
#---------------------------------------------#
def training(self, train_x, train_y):
pass

#---------------------------------------------#
# Prediction #
#---------------------------------------------#
def prediction(self, data):
""" Aggregate the image by merging multiple predictions into a single one.
It is required to return the merged predictions (as NumPy matrix).
It is possible to pass configurations through the initialization function for this class.
Args:
preds (numpy.ndarray): Ensembled predictions encoded in a NumPy Matrix with shape (N_models, N_classes).
Returns:
pred (numpy.ndarray): Merged prediction encoded in a NumPy Matrix with shape (1, N_classes).
"""
pass

#---------------------------------------------#
# Dump Model to Disk #
#---------------------------------------------#
def dump(self, path):
pass

#---------------------------------------------#
# Load Model from Disk #
#---------------------------------------------#
def load(self, path):
pass

0 comments on commit 7014130

Please sign in to comment.