Softmax
Softmax
¤
Bases: Aggregate_Base
Aggregate function based on softmax.
This class should be passed to an ensemble function/class for combining predictions.
Source code in aucmedi/ensemble/aggregate/softmax.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
compute_softmax(x)
¤
Compute softmax values for each sets of scores in x.
Source code in aucmedi/ensemble/aggregate/softmax.py
56 57 58 59 |
|