-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.h
82 lines (75 loc) · 1.33 KB
/
model.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#ifndef MODEL_H
#define MODEL_H
#include "NN.h"
#include "Network.h"
#include "Network.cpp"
#include <iostream>
class Model
{
public:
Network* thisNetwork;
vector<unsigned> topology;
vector<double>weights;
public:
Model()
{
}
void SetTopology(int* tp)
{
int arrSize = *(&tp + 1) - tp;
vector<unsigned> topo;
for(int i=0;i<arrSize;i++)
{
topo.push_back(tp[i]);
}
topology = topo;
}
void SetTopology(vector<unsigned> tp)
{
topology = tp;
}
void InitializeTopology()
{
thisNetwork = new Network(topology);
}
void BackPropagate(vector<double> targetVals)
{
thisNetwork->backPropagate(targetVals);
}
Network* getNetwork()
{
return thisNetwork;
}
vector<double> GetWeights()
{
weights = thisNetwork->GetWeights();
return weights;
}
void feedforward(vector<double> inputs)
{
thisNetwork->feedForward(inputs);
}
vector<double> GetResult()
{
vector<double> resultVals;
thisNetwork->getResults(resultVals);
return resultVals;
}
void SetWeights(vector<double> weights)
{
thisNetwork->PutWeights(weights);
}
void DisplayTopology()
{
for(int i=0;i<topology.size();i++)
{
std::cout<<topology[i]<<"\n";
}
}
void UpdateWeights()
{
// cout<<"ok";
thisNetwork->UpdateWeights();
}
};
#endif