|
const char * | to_string (prediction_type_t prediction_type) |
|
func_data | VW::LEARNER::tuple_dbf (void *data, base_learner *base, void(*func)(void *)) |
|
void | VW::LEARNER::generic_driver (vw &all) |
|
void | VW::LEARNER::generic_driver (const std::vector< vw * > &alls) |
|
void | VW::LEARNER::generic_driver_onethread (vw &all) |
|
void | VW::LEARNER::noop_save_load (void *, io_buf &, bool, bool) |
|
void | VW::LEARNER::noop_persist_metrics (void *, metric_sink &) |
|
void | VW::LEARNER::noop (void *) |
|
float | VW::LEARNER::noop_sensitivity (void *, base_learner &, example &) |
|
float | VW::LEARNER::recur_sensitivity (void *, base_learner &, example &) |
|
void | VW::LEARNER::debug_increment_depth (example &ex) |
|
void | VW::LEARNER::debug_increment_depth (multi_ex &ec_seq) |
|
void | VW::LEARNER::debug_decrement_depth (example &ex) |
|
void | VW::LEARNER::debug_decrement_depth (multi_ex &ec_seq) |
|
void | VW::LEARNER::increment_offset (example &ex, const size_t increment, const size_t i) |
|
void | VW::LEARNER::increment_offset (multi_ex &ec_seq, const size_t increment, const size_t i) |
|
void | VW::LEARNER::decrement_offset (example &ex, const size_t increment, const size_t i) |
|
void | VW::LEARNER::decrement_offset (multi_ex &ec_seq, const size_t increment, const size_t i) |
|
bool | VW::LEARNER::ec_is_example_header (example const &ec, label_type_t label_type) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (free_ptr< T > &dat, L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), size_t ws, prediction_type_t pred_type, const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (free_ptr< T > &dat, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), size_t params_per_weight, const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (void(*predict)(T &, L &, E &), size_t params_per_weight, const std::string &name) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (free_ptr< T > &dat, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), size_t params_per_weight, prediction_type_t pred_type, const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (free_ptr< T > &dat, L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), size_t ws, const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (free_ptr< T > &dat, L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_learner (L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), const std::string &name, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_multiclass_learner (free_ptr< T > &dat, L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), parser *p, size_t ws, const std::string &name, prediction_type_t pred_type=prediction_type_t::multiclass, bool learn_returns_prediction=false) |
|
template<class T , class E , class L > |
learner< T, E > & | VW::LEARNER::init_cost_sensitive_learner (free_ptr< T > &dat, L *base, void(*learn)(T &, L &, E &), void(*predict)(T &, L &, E &), parser *p, size_t ws, const std::string &name, prediction_type_t pred_type=prediction_type_t::multiclass, bool learn_returns_prediction=false) |
|
template<class T , class E > |
base_learner * | VW::LEARNER::make_base (learner< T, E > &base) |
|
template<class T , class E > |
multi_learner * | VW::LEARNER::as_multiline (learner< T, E > *l) |
|
template<class T , class E > |
single_learner * | VW::LEARNER::as_singleline (learner< T, E > *l) |
|
template<bool is_learn> |
void | VW::LEARNER::multiline_learn_or_predict (multi_learner &base, multi_ex &examples, const uint64_t offset, const uint32_t id=0) |
|
float | VW::LEARNER::noop_sensitivity_base (void *, example &) |
|
template<class DataT , class ExampleT , class BaseLearnerT > |
VW_WARNING_STATE_POP reduction_learner_builder< DataT, ExampleT, BaseLearnerT > | VW::LEARNER::make_reduction_learner (std::unique_ptr< DataT > &&data, BaseLearnerT *base, void(*learn_fn)(DataT &, BaseLearnerT &, ExampleT &), void(*predict_fn)(DataT &, BaseLearnerT &, ExampleT &), const std::string &name) |
|
template<class ExampleT , class BaseLearnerT > |
reduction_no_data_learner_builder< ExampleT, BaseLearnerT > | VW::LEARNER::make_no_data_reduction_learner (BaseLearnerT *base, void(*learn_fn)(char &, BaseLearnerT &, ExampleT &), void(*predict_fn)(char &, BaseLearnerT &, ExampleT &), const std::string &name) |
|
template<class DataT , class ExampleT > |
base_learner_builder< DataT, ExampleT > | VW::LEARNER::make_base_learner (std::unique_ptr< DataT > &&data, void(*learn_fn)(DataT &, base_learner &, ExampleT &), void(*predict_fn)(DataT &, base_learner &, ExampleT &), const std::string &name, prediction_type_t pred_type, label_type_t label_type) |
|