|
Vowpal Wabbit
|
Namespaces | |
| internal | |
Classes | |
| class | example_predict_builder |
| class | feature_offset_guard |
| class | model_parser |
| class | namespace_copy_guard |
| class | stride_shift_guard |
| class | vw_predict |
| Vowpal Wabbit slim predictor. Supports: regression, multi-class classification and contextual bandits. More... | |
Enumerations | |
| enum | vw_predict_exploration { epsilon_greedy, softmax, bag } |
| Exploration algorithm specified by the model. More... | |
Functions | |
| void | find_opt (std::string const &command_line_args, std::string arg_name, std::vector< std::string > &out_values) |
| std::vector< std::string > | find_opt (std::string const &command_line_args, std::string arg_name) |
| bool | find_opt_float (std::string const &command_line_args, std::string arg_name, float &value) |
| bool | find_opt_int (std::string const &command_line_args, std::string arg_name, int &value) |
| uint64_t | ceil_log_2 (uint64_t v) |
| template<typename T , typename S , S(*)(const char *) F> | |
| bool | find_opt_parse (std::string const &command_line_args, std::string arg_name, T &value) |
Exploration algorithm specified by the model.
| Enumerator | |
|---|---|
| epsilon_greedy | |
| softmax | |
| bag | |
Definition at line 170 of file vw_slim_predict.h.
| uint64_t vw_slim::ceil_log_2 | ( | uint64_t | v | ) |
| void vw_slim::find_opt | ( | std::string const & | command_line_args, |
| std::string | arg_name, | ||
| std::vector< std::string > & | out_values | ||
| ) |
Definition at line 9 of file opts.cc.
Referenced by find_opt(), find_opt_parse(), vw_slim::vw_predict< W >::load(), and TEST().
| std::vector< std::string > vw_slim::find_opt | ( | std::string const & | command_line_args, |
| std::string | arg_name | ||
| ) |
Definition at line 53 of file opts.cc.
References find_opt().
| bool vw_slim::find_opt_float | ( | std::string const & | command_line_args, |
| std::string | arg_name, | ||
| float & | value | ||
| ) |
Definition at line 73 of file opts.cc.
Referenced by vw_slim::vw_predict< W >::load(), and TEST().
| bool vw_slim::find_opt_int | ( | std::string const & | command_line_args, |
| std::string | arg_name, | ||
| int & | value | ||
| ) |
Definition at line 78 of file opts.cc.
Referenced by vw_slim::vw_predict< W >::load(), and TEST().
| bool vw_slim::find_opt_parse | ( | std::string const & | command_line_args, |
| std::string | arg_name, | ||
| T & | value | ||
| ) |
Definition at line 61 of file opts.cc.
References find_opt().
1.8.13