Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TNeuron.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::TNeuron *
8 * *
9 * *
10 * Description: *
11 * Neuron class to be used in MethodANNBase and its derivatives. *
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 * (see tmva/doc/LICENSE) *
22 **********************************************************************************/
23
24#ifndef ROOT_TMVA_TNeuron
25#define ROOT_TMVA_TNeuron
27//////////////////////////////////////////////////////////////////////////
28// //
29// TNeuron //
30// //
31// Neuron used by derivatives of MethodANNBase //
32// //
33//////////////////////////////////////////////////////////////////////////
35#include <iostream>
37#include "TString.h"
38#include "TObjArray.h"
39#include "TFormula.h"
40
41#include "TMVA/TSynapse.h"
42#include "TMVA/TActivation.h"
43#include "TMVA/Types.h"
44
45namespace TMVA {
46
47 class TNeuronInput;
49 class TNeuron : public TObject {
51 public:
52
54 virtual ~TNeuron();
55
56 // force the input value
58
59 // calculate the input value
60 void CalculateValue();
61
62 // calculate the activation value
65 // calculate the error field of the neuron
66 void CalculateDelta();
68 // set the activation function
69 void SetActivationEqn(TActivation* activation);
71 // set the input calculator
72 void SetInputCalculator(TNeuronInput* calculator);
74 // add a synapse as a pre-link
75 void AddPreLink(TSynapse* pre);
77 // add a synapse as a post-link
78 void AddPostLink(TSynapse* post);
80 // delete all pre-links
83 // set the error
84 void SetError(Double_t error);
86 // update the error fields of all pre-synapses, batch mode
87 // to actually update the weights, call adjust synapse weights
89
90 // update the error fields and weights of all pre-synapses, sequential mode
92
93 // update the weights of the all pre-synapses, batch mode
94 //(call UpdateSynapsesBatch first)
96
97 // explicitly initialize error fields of pre-synapses, batch mode
98 void InitSynapseDeltas();
99
100 // print activation equation, for debugging
101 void PrintActivationEqn();
102
103 // inlined functions
104 Double_t GetValue() const { return fValue; }
106 Double_t GetDelta() const { return fDelta; }
107 Double_t GetDEDw() const { return fDEDw; }
108 Int_t NumPreLinks() const { return NumLinks(fLinksIn); }
115 void SetDEDw( Double_t DEDw ) { fDEDw = DEDw; }
116 Bool_t IsInputNeuron() const { return fLinksIn == nullptr; }
117 Bool_t IsOutputNeuron() const { return fLinksOut == nullptr; }
118 void PrintPreLinks() const { PrintLinks(fLinksIn); return; }
119 void PrintPostLinks() const { PrintLinks(fLinksOut); return; }
120
121 virtual void Print(Option_t* = "") const {
122 std::cout << fValue << std::endl;
123 //PrintPreLinks(); PrintPostLinks();
124 }
125
126 private:
127
128 // private helper functions
129 void InitNeuron();
130 void DeleteLinksArray( TObjArray*& links );
131 void PrintLinks ( TObjArray* links ) const;
132 void PrintMessage ( EMsgType, TString message );
133
134 // inlined helper functions
135 Int_t NumLinks(TObjArray* links) const {
136 if (links == nullptr) return 0;
137 else return links->GetEntriesFast();
138 }
139 void NullifyLinks(TObjArray*& links) {
140 if (links != nullptr) { delete links; links = nullptr; }
141 }
142
143 // private member variables
144 TObjArray* fLinksIn; ///< array of input synapses
145 TObjArray* fLinksOut; ///< array of output synapses
146 Double_t fValue; ///< input value
147 Double_t fActivationValue; ///< activation/output value
148 Double_t fDelta; ///< error field of neuron
149 Double_t fDEDw; ///< sum of all deltas
150 Double_t fError; ///< error, only set for output neurons
151 Bool_t fForcedValue; ///< flag for forced input value
152 TActivation* fActivation; ///< activation equation
153 TNeuronInput* fInputCalculator; ///< input calculator
154
155 MsgLogger& Log() const;
156
157 ClassDef(TNeuron,0); // Neuron class used by MethodANNBase derivative ANNs
158 };
159
160} // namespace TMVA
161
162#endif
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:337
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
ostringstream derivative to redirect and format output
Definition MsgLogger.h:57
Interface for TNeuron activation function classes.
Definition TActivation.h:42
Interface for TNeuron input calculation classes.
Neuron class used by TMVA artificial neural network methods.
Definition TNeuron.h:49
void AdjustSynapseWeights()
adjust the pre-synapses' weights for each neuron (input neuron has no pre-synapse) this method should...
Definition TNeuron.cxx:263
Double_t fDEDw
sum of all deltas
Definition TNeuron.h:149
Double_t GetActivationValue() const
Definition TNeuron.h:105
Double_t fDelta
error field of neuron
Definition TNeuron.h:148
void ForceValue(Double_t value)
force the value, typically for input and bias neurons
Definition TNeuron.cxx:84
Bool_t IsOutputNeuron() const
Definition TNeuron.h:117
TNeuron()
standard constructor
Definition TNeuron.cxx:50
void UpdateSynapsesSequential()
update the pre-synapses for each neuron (input neuron has no pre-synapse) this method should only be ...
Definition TNeuron.cxx:242
void PrintMessage(EMsgType, TString message)
print message, for debugging
Definition TNeuron.cxx:336
TSynapse * PostLinkAt(Int_t index) const
Definition TNeuron.h:111
void NullifyLinks(TObjArray *&links)
Definition TNeuron.h:139
TActivation * fActivation
activation equation
Definition TNeuron.h:152
Bool_t IsInputNeuron() const
Definition TNeuron.h:116
Double_t GetDEDw() const
Definition TNeuron.h:107
void SetActivationEqn(TActivation *activation)
set activation equation
Definition TNeuron.cxx:160
void InitNeuron()
initialize the neuron, most variables still need to be set via setters
Definition TNeuron.cxx:67
MsgLogger & Log() const
Definition TNeuron.cxx:343
Double_t GetDelta() const
Definition TNeuron.h:106
void AddPostLink(TSynapse *post)
add synapse as a post-link to this neuron
Definition TNeuron.cxx:178
void SetInputCalculator(TNeuronInput *calculator)
set input calculator
Definition TNeuron.cxx:151
void SetInputNeuron()
Definition TNeuron.h:112
Int_t NumPreLinks() const
Definition TNeuron.h:108
void PrintActivationEqn()
print activation equation, for debugging
Definition TNeuron.cxx:327
Double_t fActivationValue
activation/output value
Definition TNeuron.h:147
Double_t fValue
input value
Definition TNeuron.h:146
void SetError(Double_t error)
set error, this should only be done for an output neuron
Definition TNeuron.cxx:212
TSynapse * PreLinkAt(Int_t index) const
Definition TNeuron.h:110
void CalculateValue()
calculate neuron input
Definition TNeuron.cxx:93
TObjArray * fLinksOut
array of output synapses
Definition TNeuron.h:145
void SetBiasNeuron()
Definition TNeuron.h:114
void CalculateActivationValue()
calculate neuron activation/output
Definition TNeuron.cxx:102
void SetOutputNeuron()
Definition TNeuron.h:113
TNeuronInput * fInputCalculator
input calculator
Definition TNeuron.h:153
void PrintPostLinks() const
Definition TNeuron.h:119
void SetDEDw(Double_t DEDw)
Definition TNeuron.h:115
Double_t fError
error, only set for output neurons
Definition TNeuron.h:150
TObjArray * fLinksIn
array of input synapses
Definition TNeuron.h:144
void UpdateSynapsesBatch()
update and adjust the pre-synapses for each neuron (input neuron has no pre-synapse) this method shou...
Definition TNeuron.cxx:224
Int_t NumPostLinks() const
Definition TNeuron.h:109
void DeleteLinksArray(TObjArray *&links)
delete an array of TSynapses
Definition TNeuron.cxx:195
virtual ~TNeuron()
destructor
Definition TNeuron.cxx:58
Bool_t fForcedValue
flag for forced input value
Definition TNeuron.h:151
void AddPreLink(TSynapse *pre)
add synapse as a pre-link to this neuron
Definition TNeuron.cxx:169
Double_t GetValue() const
Definition TNeuron.h:104
void DeletePreLinks()
delete all pre-links
Definition TNeuron.cxx:187
Int_t NumLinks(TObjArray *links) const
Definition TNeuron.h:135
void InitSynapseDeltas()
initialize the error fields of all pre-neurons this method should only be called in batch mode
Definition TNeuron.cxx:283
void PrintPreLinks() const
Definition TNeuron.h:118
void CalculateDelta()
calculate error field
Definition TNeuron.cxx:115
virtual void Print(Option_t *="") const
This method must be overridden when a class wants to print itself.
Definition TNeuron.h:121
void PrintLinks(TObjArray *links) const
print an array of TSynapses, for debugging
Definition TNeuron.cxx:303
Synapse class used by TMVA artificial neural network methods.
Definition TSynapse.h:42
EMsgType
Definition Types.h:55
An array of TObjects.
Definition TObjArray.h:31
Int_t GetEntriesFast() const
Definition TObjArray.h:58
TObject * At(Int_t idx) const override
Definition TObjArray.h:164
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:139
This is a simple weighted bidirectional connection between two neurons.
Definition TSynapse.h:20
create variable transformations