Vowpal Wabbit
parse_regressor.h
Go to the documentation of this file.
1 /*
2 Copyright (c) by respective owners including Yahoo!, Microsoft, and
3 individual contributors. All rights reserved. Released under a BSD
4 license as described in the file LICENSE.
5  */
6 #pragma once
7 #include <string>
8 #include "global_data.h"
9 #include "options.h"
10 
11 void read_regressor_file(vw& all, std::vector<std::string> files, io_buf& io_temp);
12 
13 void finalize_regressor(vw& all, std::string reg_name);
14 void initialize_regressor(vw& all);
15 
16 void save_predictor(vw& all, std::string reg_name, size_t current_pass);
17 void save_load_header(
18  vw& all, io_buf& model_file, bool read, bool text, std::string& file_options, VW::config::options_i& options);
19 
20 void parse_mask_regressor_args(vw& all, std::string feature_mask, std::vector<std::string> initial_regressors);
void save_predictor(vw &all, std::string reg_name, size_t current_pass)
void parse_mask_regressor_args(vw &all, std::string feature_mask, std::vector< std::string > initial_regressors)
void initialize_regressor(vw &all)
void save_load_header(vw &all, io_buf &model_file, bool read, bool text, std::string &file_options, VW::config::options_i &options)
Definition: io_buf.h:54
void read_regressor_file(vw &all, std::vector< std::string > files, io_buf &io_temp)
void finalize_regressor(vw &all, std::string reg_name)