Inheritance diagram for classias::train::averaged_perceptron_multi< error_tmpl >:
error_tmpl | The type of the error (loss) function. |
Public Types | |
typedef error_tmpl | error_type |
The type implementing an error function. | |
typedef error_type::model_type | model_type |
The type implementing a model (weight vector for features). | |
typedef model_type::value_type | value_type |
The type representing a value. | |
typedef averaged_perceptron_base< error_tmpl > | base_class |
A synonym of the base class. | |
typedef averaged_perceptron_multi< error_tmpl > | this_class |
A synonym of this class. | |
Public Member Functions | |
template<class iterator_type, class feature_generator_type> | |
void | update (iterator_type it, feature_generator_type &fgen) |
Receives a training instance and updates feature weights. | |
template<class iterator_type> | |
void | update (iterator_type first, iterator_type last) |
Receives multiple training instances and updates feature weights. | |
Protected Member Functions | |
template<class feature_generator_type, class iterator_type> | |
void | update_weights (model_type &w, int l, feature_generator_type &fgen, iterator_type first, iterator_type last, value_type delta) |
Adds a value to weights associated with a feature vector. |
void classias::train::averaged_perceptron_multi< error_tmpl >::update | ( | iterator_type | it, | |
feature_generator_type & | fgen | |||
) | [inline] |
Receives a training instance and updates feature weights.
it | An interator for the training instance. | |
fgen | The feature generator. |
void classias::train::averaged_perceptron_multi< error_tmpl >::update | ( | iterator_type | first, | |
iterator_type | last | |||
) | [inline] |
Receives multiple training instances and updates feature weights.
first | The iterator pointing to the first instance. | |
last | The iterator pointing just beyond the last instance. |
void classias::train::averaged_perceptron_multi< error_tmpl >::update_weights | ( | model_type & | w, | |
int | l, | |||
feature_generator_type & | fgen, | |||
iterator_type | first, | |||
iterator_type | last, | |||
value_type | delta | |||
) | [inline, protected] |
Adds a value to weights associated with a feature vector.
w | The weight vector to which an update occurs. | |
l | The candidate index. | |
fgen | The feature generator. | |
first | The iterator pointing to the first element of the feature vector. | |
last | The iterator pointing just beyond the last element of the feature vector. | |
delta | The value to be added to the weights. |