-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_2.cpp
219 lines (172 loc) · 5.47 KB
/
main_2.cpp
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//
// main_2.cpp
// Comp3046_Phase_3
//
// Created by Phoenix JI .
// Copyright © 2019 Phoenix JI. All rights reserved.
//
#include <time.h>
#include <stdio.h>
#include <iostream>
#include <vector>
#include <math.h>
#include <fstream>
#include <sstream>
#include <string>
#include <random>
#include <time.h>
#include <algorithm>
//#include <omp.h>
#include "ANN.h"
using namespace std;
int main() {
/* ANN Initilization */
cout<<endl;
int layers;
cout<<"Input layer has been assigned "<<endl;
cout<<"Please input the number of other layers: ";
cin >> layers;
cout<<endl;
vector <int> neu_eachlayer ;
cout<<endl;
cout<<"Input layer is layer 1 "<<endl;
for(int i=1;i<=layers;i++){
if(i==layers){
cout<<"Please input number of neurons of output layer (must be 10): ";
int numl;
cin >>numl;
neu_eachlayer.push_back(numl);
break;
}else{
cout<<"Please input number of neurons of layer "<<i+1<<": ";
}
int num;
cin >>num;
neu_eachlayer.push_back(num);
}
cout<<endl;
/* Choose service*/
int pe;
cout<<"Please choose: "<<endl;
cout<<endl;
cout<<"1. Train ANN 2. Test ANN "<<endl;
cout<<endl;
cin >> pe;
switch(pe){
case 1 :
{
clock_t start, end;
start = clock();
vector< vector<float> > X_train;
vector<float> y_train;
ifstream myfile("train.txt");
if (myfile.is_open())
{
cout << "Loading data ...\n";
string line;
while (getline(myfile, line))
{
int x, y;
vector<float> X;
stringstream ss(line);
ss >> y;
y_train.push_back(y);
for (int i = 0; i < 28 * 28; i++) {
ss >> x;
X.push_back(x/255.0);
}
X_train.push_back(X);
}
myfile.close();
cout << "Loading data finished.\n";
}
else
cout << "Unable to open file" << '\n';
vector<vector<float> > Actual;
for(int i=0;i<y_train.size();i++){
Actual.push_back(vector<float>());
for (int j=0;j<10;j++){
if(j==y_train[i]){
Actual[i].push_back(1);
}else {
Actual[i].push_back(0);
}
}
}
cout<<endl;
int epochs;
cout<<"Please input the epochs: ";
cin >> epochs;
cout<<endl;
float lr;
cout<<"Please input the learning rate: ";
cin >> lr;
cout<<endl;
int mbz;
cout<<"Please input the number of mini-batches: ";
cin >> mbz;
cout<<endl;
ANN A1;
A1.setLayer(layers,neu_eachlayer);
A1.set_LearningRate(lr);
A1.set_epochs(epochs);
A1.Weights_Bias_Initilization(X_train[0]);
A1.set_num_batch(mbz);
A1.train(X_train,Actual);
end = clock();
cout<<"The time was: "<< (end - start) * 1000 << " milliseconds" <<endl;
cout<<endl;
A1.Weights_store();
A1.Bias_store();
break;
}
case 2 :
{
/* Test Program */
vector< vector<float> > X_test;
vector<float> y_test;
ifstream mytestfile("test.txt");
if (mytestfile.is_open())
{
cout << "Loading data ...\n";
string line;
while (getline(mytestfile, line))
{
int x, y;
vector<float> X;
stringstream ss(line);
ss >> y;
y_test.push_back(y);
for (int i = 0; i < 28 * 28; i++) {
ss >> x;
X.push_back(x/255.0);
}
X_test.push_back(X);
}
mytestfile.close();
cout << "Loading data finished.\n";
}
else
cout << "Unable to open file" << '\n';
cout<<endl;
ANN A2;
A2.setLayer(layers,neu_eachlayer);
A2.Weights_Bias_Initilization(X_test[0]);
A2.Weights_load();
A2.Bias_load();
int acc=0;
for(int i=0;i<X_test.size();i++){
if(A2.inference(X_test[i])==y_test[i]){
acc++;
}
}
cout<<"Accuracy: "<<(float) acc/y_test.size() <<endl;
break;
}
default:
{
cout<<"Invalid Operation"<<endl;
}
}
return 0;
}