... | ... | @@ -4,6 +4,8 @@ An implementation of the AdaBoost MH (Adaptive Boosting) algorithm for classific |
|
|
|
|
|
```prolog
|
|
|
%% kleines Nutzung Beispiel
|
|
|
adaboost_initModelWithTraining([5.1,3.5,1.4, 4.9,3.0,1.4, 4.7,3.2,1.3, 4.6,3.1,1.5], 3, [0,0,1,0], 2, perceptron, 50, 0.0001),
|
|
|
adaboost_classify([3,2,0, 5,1,4, 0,0,4, 3,3,5, 0,5,5, 2,5,5], 3, PredictionList, ProbabilitiesList, _).
|
|
|
```
|
|
|
|
|
|
# Available Predicates
|
... | ... | |