Superclass of unsupervised learning algorithms. More...
#include <shark/Algorithms/Trainers/AbstractTrainer.h>
Public Types | |
typedef Model | ModelType |
typedef Model::InputType | InputType |
Public Member Functions | |
virtual void | train (ModelType &model, const UnlabeledData< InputType > &inputset)=0 |
Core of the Trainer interface. More... | |
Public Member Functions inherited from shark::INameable | |
virtual | ~INameable () |
virtual std::string | name () const |
returns the name of the object More... | |
Public Member Functions inherited from shark::ISerializable | |
virtual | ~ISerializable () |
Virtual d'tor. More... | |
virtual void | read (InArchive &archive) |
Read the component from the supplied archive. More... | |
virtual void | write (OutArchive &archive) const |
Write the component to the supplied archive. More... | |
void | load (InArchive &archive, unsigned int version) |
Versioned loading of components, calls read(...). More... | |
void | save (OutArchive &archive, unsigned int version) const |
Versioned storing of components, calls write(...). More... | |
BOOST_SERIALIZATION_SPLIT_MEMBER () | |
Superclass of unsupervised learning algorithms.
Definition at line 95 of file AbstractTrainer.h.
typedef Model::InputType shark::AbstractUnsupervisedTrainer< Model >::InputType |
Definition at line 99 of file AbstractTrainer.h.
typedef Model shark::AbstractUnsupervisedTrainer< Model >::ModelType |
Definition at line 98 of file AbstractTrainer.h.
|
pure virtual |
Core of the Trainer interface.