Logo ROOT   6.10/09
Reference Guide
TActivationTanh.h
Go to the documentation of this file.
1 // @(#)root/tmva $Id$
2 // Author: Matt Jachowski
3 
4 /**********************************************************************************
5  * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6  * Package: TMVA *
7  * Class : TMVA::TActivationTanh *
8  * Web : http://tmva.sourceforge.net *
9  * *
10  * Description: *
11  * Tanh activation function for TNeuron *
12  * *
13  * Authors (alphabetical): *
14  * Matt Jachowski <jachowski@stanford.edu> - Stanford University, USA *
15  * *
16  * Copyright (c) 2005: *
17  * CERN, Switzerland *
18  * *
19  * Redistribution and use in source and binary forms, with or without *
20  * modification, are permitted according to the terms listed in LICENSE *
21  * (http://tmva.sourceforge.net/LICENSE) *
22  **********************************************************************************/
23 
24 #ifndef ROOT_TMVA_TActivationTanh
25 #define ROOT_TMVA_TActivationTanh
26 
27 //////////////////////////////////////////////////////////////////////////
28 // //
29 // TActivationTanh //
30 // //
31 // Tanh activation function for TNeuron //
32 // //
33 //////////////////////////////////////////////////////////////////////////
34 
35 #include "TFormula.h"
36 #include "TString.h"
37 
38 #include "TMVA/TActivation.h"
39 
40 namespace TMVA {
41 
42  class TActivationTanh : public TActivation {
43 
44  public:
45 
48 
49  // evaluate the activation function
50  Double_t Eval(Double_t arg);
51 
52  // evaluate the derivative of the activation function
54 
55  // minimum of the range of the activation function
56  Double_t GetMin() { return -1; }
57 
58  // maximum of the range of the activation function
59  Double_t GetMax() { return 1; }
60 
61  // expression for the activation function
63 
64  // writer of function code
65  virtual void MakeFunction(std::ostream& fout, const TString& fncName);
66 
67  void SetSlow(){fFAST=kFALSE;} // to ensure old training files will be process with old tanh code
68  private:
69  // fast tanh approximation
72 
73  ClassDef(TActivationTanh,0); // Tanh sigmoid activation function for TNeuron
74  };
75 
76 } // namespace TMVA
77 
78 #endif
Double_t fast_tanh(Double_t arg)
a fast tanh approximation
TString GetExpression()
get expressions for the tanh and its derivative whatever that may be good for ... ...
Basic string class.
Definition: TString.h:129
bool Bool_t
Definition: RtypesCore.h:59
TActivationTanh()
constructor for tanh sigmoid (normalized in [-1,1])
virtual void MakeFunction(std::ostream &fout, const TString &fncName)
writes the sigmoid activation function source code
#define ClassDef(name, id)
Definition: Rtypes.h:297
Double_t EvalDerivative(Double_t arg)
evaluate the derivative
Tanh activation function for ANN.
Double_t Eval(Double_t arg)
evaluate the tanh
~TActivationTanh()
destructor
const Bool_t kFALSE
Definition: RtypesCore.h:92
double Double_t
Definition: RtypesCore.h:55
Abstract ClassifierFactory template that handles arbitrary types.
Interface for TNeuron activation function classes.
Definition: TActivation.h:42