OpenANN  1.1.0
An open source library for artificial neural networks.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Convenience.h
Go to the documentation of this file.
1 #ifndef OPENANN_CONVENIENCE_H_
2 #define OPENANN_CONVENIENCE_H_
3 
4 #include <OpenANN/Net.h>
5 #include <string>
6 
7 namespace OpenANN
8 {
9 
10 
11 class StoppingCriteria;
12 
13 
25 void train(Net& net, std::string algorithm, ErrorFunction errorFunction,
26  const StoppingCriteria& stop, bool reinitialize = false,
27  bool dropout = false);
28 
41  int D, int F, int H, ...);
42 
43 } // namespace OpenANN
44 
45 #endif // OPENANN_CONVENIENCE_H_