-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLink.h
57 lines (45 loc) · 1.21 KB
/
Link.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* This class defines a link between two neurons, called predecessor and successor
*/
#ifndef LINK_H
#define LINK_H
class Neuron;
class Link
{
public:
explicit Link(double, Neuron *, Neuron *);
virtual ~Link();
/*
* Returns the weight of this link.
*/
double weight() const;
/*
* The output of a link is actually the output of the predecessor neuron in the last computation. Here
* it can be easily accessed by the successor neuron.
*/
double output() const;
/*
* Gradients are stored here, since they are related to the weights.
*/
double gradient() const;
double previousGradient() const;
/*
* This is the last "delta" applied to this link and computed by the RPROP algorithm: it will be needed in
* the next application of rprop.
*/
double delta() const;
Neuron* successor() const;
Neuron* predecessor() const;
void setWeight(double);
void setOutput(double);
void setGradient(double);
void setDelta(double);
private:
int m_id;
double m_weight;
double m_output;
double m_gradient, m_prevGradient, m_delta;
Neuron* m_next;
Neuron* m_prev;
};
#endif