presage
0.9.1
|
#include <predictorRegistry.h>
Classes | |
class | Iterator |
class | PredictorRegistryException |
Public Member Functions | |
PredictorRegistry (Configuration *config) | |
~PredictorRegistry () | |
virtual void | update (const Observable *variable) |
Iterator | iterator () |
void | setContextTracker (ContextTracker *ct) |
![]() | |
virtual | ~Observer () |
Static Public Attributes | |
static const char * | LOGGER = "Presage.PredictorRegistry.LOGGER" |
static const char * | PREDICTORS = "Presage.PredictorRegistry.PREDICTORS" |
Private Member Functions | |
void | setLogger (const std::string &level) |
void | setPredictors (const std::string &predictor_list) |
void | addPredictor (const std::string &predictor_name) |
void | removePredictor (const std::string &predictor_name) |
void | removePredictors () |
Private Attributes | |
Configuration * | config |
ContextTracker * | contextTracker |
Logger< char > | logger |
std::string | predictors_list |
std::vector< Predictor * > | predictors |
Dispatcher< PredictorRegistry > | dispatcher |
Additional Inherited Members | |
![]() | |
Observer () | |
Manages instantiation and iteration through predictors and aids in generating predictions and learning.
PredictorRegitry class holds the active predictors and provides the interface required to obtain an iterator to the predictors.
The standard use case is: Predictor obtains an iterator from PredictorRegistry and invokes the predict() or learn() method on each Predictor pointed to by the iterator.
Predictor registry should eventually just be a simple wrapper around plump.
Definition at line 45 of file predictorRegistry.h.
PredictorRegistry::PredictorRegistry | ( | Configuration * | config | ) |
Definition at line 42 of file predictorRegistry.cpp.
References config, dispatcher, Configuration::find(), LOGGER, Dispatcher< class_t >::map(), PREDICTORS, setLogger(), and setPredictors().
PredictorRegistry::~PredictorRegistry | ( | ) |
Definition at line 54 of file predictorRegistry.cpp.
References removePredictors().
|
private |
Definition at line 130 of file predictorRegistry.cpp.
References config, contextTracker, endl(), Configuration::find(), Variable::get_value(), logger, predictors, PRESAGE_INIT_PREDICTOR_ERROR, and PresageException::what().
Referenced by setPredictors().
PredictorRegistry::Iterator PredictorRegistry::iterator | ( | ) |
Definition at line 231 of file predictorRegistry.cpp.
References predictors.
Referenced by ContextTracker::learn(), and PredictorActivator::predict().
|
private |
Definition at line 203 of file predictorRegistry.cpp.
References endl(), logger, and predictors.
Referenced by setPredictors().
|
private |
Definition at line 222 of file predictorRegistry.cpp.
References endl(), logger, and predictors.
Referenced by ~PredictorRegistry().
void PredictorRegistry::setContextTracker | ( | ContextTracker * | ct | ) |
Definition at line 66 of file predictorRegistry.cpp.
References contextTracker, predictors_list, and setPredictors().
Referenced by ContextTracker::ContextTracker().
|
private |
Definition at line 59 of file predictorRegistry.cpp.
References endl(), logger, and setlevel().
Referenced by PredictorRegistry().
|
private |
Definition at line 74 of file predictorRegistry.cpp.
References addPredictor(), contextTracker, endl(), logger, predictors, predictors_list, and removePredictor().
Referenced by PredictorRegistry(), and setContextTracker().
|
virtual |
Implements Observer.
Definition at line 261 of file predictorRegistry.cpp.
References Dispatcher< class_t >::dispatch(), dispatcher, endl(), Observable::get_name(), Observable::get_value(), and logger.
|
private |
Definition at line 89 of file predictorRegistry.h.
Referenced by addPredictor(), and PredictorRegistry().
|
private |
Definition at line 90 of file predictorRegistry.h.
Referenced by addPredictor(), setContextTracker(), and setPredictors().
|
private |
Definition at line 96 of file predictorRegistry.h.
Referenced by PredictorRegistry(), and update().
|
static |
Definition at line 79 of file predictorRegistry.h.
Referenced by PredictorRegistry().
|
private |
Definition at line 91 of file predictorRegistry.h.
Referenced by addPredictor(), removePredictor(), removePredictors(), setLogger(), setPredictors(), and update().
|
static |
Definition at line 80 of file predictorRegistry.h.
Referenced by PredictorRegistry().
|
private |
Definition at line 94 of file predictorRegistry.h.
Referenced by addPredictor(), iterator(), removePredictor(), removePredictors(), and setPredictors().
|
private |
Definition at line 93 of file predictorRegistry.h.
Referenced by setContextTracker(), and setPredictors().