| Did you know ... | Search Documentation: |
| Pack logtalk -- logtalk-3.98.0/library/ada_boost/NOTES.md |
This file is part of Logtalk https://logtalk.org/ SPDX-FileCopyrightText: 1998-2026 Paulo Moura <pmoura@logtalk.org> SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
ada_boostAdaBoost (Adaptive Boosting) classifier using C4.5 decision trees as base learners. Implements the SAMME (Stagewise Additive Modeling using a Multi-class Exponential loss function) variant, which supports multi-class classification. Builds an ensemble of weighted decision trees where each subsequent tree focuses on the examples misclassified by previous trees.
The library implements the classifier_protocol defined in the
classifier_protocols library. It provides predicates for learning an
ensemble classifier from a dataset, using it to make predictions (with
class probabilities), and exporting it as a list of predicate clauses or
to a file.
Datasets are represented as objects implementing the dataset_protocol
protocol from the classifier_protocols library. See test_files directory
for examples.
Open the [../../docs/library_index.html#ada_boost](../../docs/library_index.html#ada_boost) link in a web browser.
To load all entities in this library, load the loader.lgt file:
| ?- logtalk_load(ada_boost(loader)).
To test this library predicates, load the tester.lgt file:
| ?- logtalk_load(ada_boost(tester)).
The following options can be passed to the learn/3 predicate:
number_of_estimators(N): Number of boosting rounds / weak learners (default: 10)The learned classifier is represented as a compound term with the functor chosen by the user when exporting the classifier and arity 3. The default functor is ab_classifier/3:
ab_classifier(WeightedTrees, ClassValues, Options)
Where:
weighted_tree(Alpha, C45Tree, AttributeNames) elements% Learn an AdaBoost classifier with default options (10 estimators) | ?- ada_boost::learn(play_tennis, Classifier). ... % Learn with custom options | ?- ada_boost::learn(play_tennis, Classifier, [number_of_estimators(20)]). ...
% Predict class for a new instance
| ?- ada_boost::learn(play_tennis, Classifier),
ada_boost::predict(Classifier, [outlook-sunny, temperature-hot, humidity-high, wind-weak], Class).
Class = no
...
% Get probability distribution from weighted voting
| ?- ada_boost::learn(play_tennis, Classifier),
ada_boost::predict_probabilities(Classifier, [outlook-overcast, temperature-mild, humidity-normal, wind-weak], Probabilities).
Probabilities = [yes-0.9, no-0.1]
...
% Export as predicate clauses
| ?- ada_boost::learn(play_tennis, Classifier),
ada_boost::classifier_to_clauses(play_tennis, Classifier, my_boost, Clauses).
...
% Export to a file
| ?- ada_boost::learn(play_tennis, Classifier),
ada_boost::classifier_to_file(play_tennis, Classifier, my_boost, 'boost.pl').
...
% Load and use a previously saved classifier
| ?- logtalk_load('boost.pl'),
my_boost(Classifier),
ada_boost::predict(Classifier, [outlook-sunny, temperature-cool, humidity-normal, wind-weak], Class).
Class = yes
...
% Print a summary of the AdaBoost classifier
| ?- ada_boost::learn(play_tennis, Classifier),
ada_boost::print_classifier(Classifier).
AdaBoost Classifier
===================
Learning options: [number_of_estimators(10)]
Class values: [yes,no]
Number of estimators: 10
Weighted trees:
Estimator 1 (alpha=1.2345, features: [outlook,temperature,humidity,wind]):
-> tree rooted at outlook
...
...