-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.hpp
203 lines (167 loc) · 4.13 KB
/
io.hpp
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
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
using namespace std;
int roundValue = 1e3;
vector<vector<double>> ReadDatasetFromCSV(string filename)
{
fstream fin;
fin.open(filename, ios::in);
vector<double> row;
vector<vector<double>> dataset;
string line, word;
double value;
// get rid of the header row
getline(fin, line);
while (fin.good())
{
// std::cout << "good\n";
row.clear();
// Add bias
// row.push_back(1);
// row.push_back(1);
// read 1 line
getline(fin, line);
// put the line to stream
stringstream ssline(line);
// read one field at a time
while (getline(ssline, word, ','))
{
stringstream ssword(word);
// convert the value from string to double
ssword >> value;
row.push_back(value);
}
dataset.push_back(row);
}
fin.close();
return dataset;
}
vector<vector<int64_t>> ReadDatasetBGVFromCSV(string filename)
{
fstream fin;
fin.open(filename, ios::in);
vector<int64_t> row;
vector<vector<int64_t>> dataset;
string line, word;
double value;
// get rid of the header row
getline(fin, line);
while (fin.good())
{
// std::cout << "good\n";
row.clear();
// Add bias
// row.push_back(1);
// row.push_back(1);
// read 1 line
getline(fin, line);
// put the line to stream
stringstream ssline(line);
// read one field at a time
while (getline(ssline, word, ','))
{
stringstream ssword(word);
// convert the value from string to double
ssword >> value;
value*=roundValue;
row.push_back((int)value);
}
dataset.push_back(row);
}
fin.close();
return dataset;
}
// Write to a csv file
// If the file exists, its contents will be overwritten
// Otherwise, create a new file and write to it
void WriteWeightsToCSV(string filename, const vector<double> &data)
{
fstream fout;
fout.open(filename, ios::out);
for (int i = 0; i < data.size(); ++i)
{
fout << data[i];
if (i < data.size() - 1)
{
fout << ",";
}
}
fout.close();
}
void WriteWeightsBGVToCSV(string filename, const vector<int64_t> &data)
{
fstream fout;
fout.open(filename, ios::out);
for (int i = 0; i < data.size(); ++i)
{
fout << data[i];
if (i < data.size() - 1)
{
fout << ",";
}
}
fout.close();
}
vector<double> ReadWeightsFromCSV(string filename)
{
fstream fin;
fin.open(filename, ios::in);
vector<double> weights;
string line, word;
double value;
while (fin.good())
{
getline(fin, line);
stringstream ssline(line);
while (getline(ssline, word, ','))
{
stringstream ssword(word);
ssword >> value;
weights.push_back(value);
}
}
return weights;
}
vector<int64_t> ReadWeightsBGVFromCSV(string filename)
{
fstream fin;
fin.open(filename, ios::in);
vector<int64_t> weights;
string line, word;
double value;
while (fin.good())
{
getline(fin, line);
stringstream ssline(line);
while (getline(ssline, word, ','))
{
stringstream ssword(word);
ssword >> value;
weights.push_back(value);
}
}
return weights;
}
vector<double> ExtractLabel(vector<vector<double>> &dataset, int col_idx)
{
vector<double> labels;
for (int i = 0; i < dataset.size(); ++i)
{
labels.push_back(dataset[i][col_idx]);
dataset[i].erase(dataset[i].begin() + col_idx);
}
return labels;
}
vector<int64_t> ExtractLabelBGV(vector<vector<int64_t>> &dataset, int col_idx)
{
vector<int64_t> labels;
for (int i = 0; i < dataset.size(); ++i)
{
labels.push_back(dataset[i][col_idx]);
dataset[i].erase(dataset[i].begin() + col_idx);
}
return labels;
}