SHOGUN  v1.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Perceptron.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 1999-2009 Soeren Sonnenburg
8  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _PERCEPTRON_H___
12 #define _PERCEPTRON_H___
13 
14 #include <stdio.h>
15 #include <shogun/lib/common.h>
18 
19 namespace shogun
20 {
31 {
32  public:
34  CPerceptron();
35 
41  CPerceptron(CDotFeatures* traindat, CLabels* trainlab);
42  virtual ~CPerceptron();
43 
48  virtual inline EClassifierType get_classifier_type() { return CT_PERCEPTRON; }
49 
51  inline void set_learn_rate(float64_t r)
52  {
53  learn_rate=r;
54  }
55 
57  inline void set_max_iter(int32_t i)
58  {
59  max_iter=i;
60  }
61 
63  inline virtual const char* get_name() const { return "Perceptron"; }
64 
65  protected:
74  virtual bool train_machine(CFeatures* data=NULL);
75 
76  protected:
80  int32_t max_iter;
81 };
82 }
83 #endif
void set_learn_rate(float64_t r)
set learn rate of gradient descent training algorithm
Definition: Perceptron.h:51
EClassifierType
Definition: Machine.h:27
The class Labels models labels, i.e. class assignments of objects.
Definition: Labels.h:35
virtual const char * get_name() const
Definition: Perceptron.h:63
Features that support dot products among other operations.
Definition: DotFeatures.h:41
void set_max_iter(int32_t i)
set maximum number of iterations
Definition: Perceptron.h:57
double float64_t
Definition: common.h:56
Class LinearMachine is a generic interface for all kinds of linear machines like classifiers.
Definition: LinearMachine.h:61
Class Perceptron implements the standard linear (online) perceptron.
Definition: Perceptron.h:30
The class Features is the base class of all feature objects.
Definition: Features.h:56
float64_t learn_rate
Definition: Perceptron.h:78
virtual bool train_machine(CFeatures *data=NULL)
Definition: Perceptron.cpp:33
virtual ~CPerceptron()
Definition: Perceptron.cpp:29
virtual EClassifierType get_classifier_type()
Definition: Perceptron.h:48

SHOGUN Machine Learning Toolbox - Documentation