Vowpal Wabbit
active.h
Go to the documentation of this file.
1 #pragma once
2 #include <memory>
3 
4 struct rand_state;
5 
6 struct active
7 {
8  float active_c0;
9  vw* all; // statistics, loss
10  std::shared_ptr<rand_state> _random_state;
11 };
12 
std::shared_ptr< rand_state > _random_state
Definition: active.h:10
vw * all
Definition: active.h:9
Definition: active.h:6
LEARNER::base_learner * active_setup(VW::config::options_i &options, vw &all)
Definition: active.cc:133
float active_c0
Definition: active.h:8