-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKmeans.java
More file actions
296 lines (240 loc) · 8.71 KB
/
Kmeans.java
File metadata and controls
296 lines (240 loc) · 8.71 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package kmeanstester;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Random;
import java.util.Scanner;
public class Kmeans {
private int numberRecords;
private int numberAttributes;
private int numberClusters;
private int numberIterations;
double col1Min = 20;
double col1Max = 100;
double col2Min = 20;
double col2Max = 100;
double col3Min = 500;
double col3Max = 900;
private double[][] records;
private double[][] centroids;
private int[] clusters;
private Random rand;
public Kmeans()
{
//parameters are zero
numberRecords = 0;
numberAttributes = 0;
numberClusters = 0;
numberIterations = 0;
//array are empty
records = null;
centroids = null;
clusters = null;
rand = null;
}
//Method loads recordsd from input file
public void load(String inputFile) throws IOException
{
Scanner inFile = new Scanner(new File(inputFile));
//read number of records, attributres
numberRecords = inFile.nextInt();
numberAttributes = inFile.nextInt();
//create array of records
records = new double[numberRecords][numberAttributes];
//for each record
for (int i = 0; i < numberRecords; i++)
{
//read attributes
for (int j = 0; j< numberAttributes; j++)
records[i][j] = inFile.nextDouble();
}
inFile.close();
normalize();
}
//Method is used to normalize the input data knowing the max and mins
public void normalize()
{
for (int i = 0; i < numberRecords; i++)
{
for (int j = 0; j < numberAttributes; j++)
{
if (j == 0)
records[i][j] = (records[i][j] - col1Min)/(col1Max - col1Min);
else if (j == 1)
records[i][j] = (records[i][j] - col2Min)/(col2Max - col2Min);
else
records[i][j] = (records[i][j] - col3Min)/(col3Max - col3Min);
}
}
}
//Method is used to normalize the input data knowing the max and mins
public void unnormalize()
{
for (int i = 0; i < numberRecords; i++)
{
for (int j = 0; j < numberAttributes; j++)
{
if (j == 0)
records[i][j] = records[i][j]*(col1Max - col1Min) + col1Min;
else if (j == 1)
records[i][j] = records[i][j]*(col2Max - col2Min) + col2Min;
else
records[i][j] = records[i][j]*(col3Max - col3Min) + col3Min;
}
}
}
//Method sets parameters of clustering
public void setParameters(int numberClusters, int numberIterations, int seed)
{
//set number of clusters
this.numberClusters = numberClusters;
//set number of iterations
this.numberIterations = numberIterations;
//create
this.rand = new Random(seed);
}
//Method performs kmeans clustering
public void cluster()
{
//initialize clusters of recordsd
initializeClusters();
//initialize centroids of clusters
initializeCentroids();
//While stop condition is not reached
for (int i = 0; i < numberIterations; i++)
{
//assign clusters to records
assignClusters();
//update centroids of clusters
updateCentroids();
}
}
//Method initializes clusters of records
private void initializeClusters()
{
//create array of cluster labels
clusters = new int[numberRecords];
//assign cluster -1 to all records
for (int i = 0; i < numberRecords; i++)
clusters[i] = -1;
}
//Method initializes centroids of clusters
private void initializeCentroids()
{
//create array of centroids
centroids = new double[numberClusters][numberAttributes];
//for each cluster
for (int i = 0; i < numberClusters; i++)
{
//randomly pick a record
int index = rand.nextInt(numberRecords);
//use record as ccentroid
for (int j = 0;j < numberAttributes; j++)
centroids[i][j] = records[index][j];
}
}
//Method assigns cluster to records
private void assignClusters()
{
//go through recoreds and assign clusters to them
for (int i = 0; i < numberRecords; i++)
{
double minDistance = distance(records[i], centroids[0]);
int minIndex = 0;
//go tyhrough centroids and find closest centroid
for (int j = 0; j < numberClusters; j++)
{
//find distance between record and centroid
double distance = distance(records[i], centroids[j]);
//if distance is less than minimum, update minimuym
if (distance < minDistance)
{
minDistance = distance;
minIndex = j;
}
}
clusters[i] = minIndex;
}
}
//Method updates centroids of clusters
private void updateCentroids()
{
//creawte array of cluster sums and initialize
double[][] clusterSum = new double[numberClusters][numberAttributes];
for (int i = 0; i < numberClusters; i++)
for (int j = 0; j < numberAttributes; j++)
clusterSum[i][j] = 0;
//create array of cluster sizes and initialize
int[] clusterSize = new int[numberClusters];
for (int i = 0; i < numberClusters; i++)
clusterSize[i] = 0;
//for each record
for (int i = 0; i < numberRecords; i++)
{
//find cluster of record
int cluster = clusters[i];
//add record to cluster sum
clusterSum[cluster] = sum(clusterSum[cluster], records[i]);
//increment cluster size
clusterSize[cluster] += 1;
}
//find centroids of each clustyer
for (int i = 0; i < numberClusters; i++)
if (clusterSize[i] > 0)
centroids[i] = scale(clusterSum[i], 1.0/clusterSize[i]);
}
//Method finds distance between two records
private double distance(double[] u, double[] v)
{
double sum = 0;
//find euclidean distance square between two records
for (int i = 0; i< u.length; i++)
sum += (u[i] - v[i]) * (u[i] - v[i]);
return sum;
}
//Method finds sum of two records
private double[] sum(double[] u, double[] v)
{
double[] result = new double[u.length];
//add corresponding attributes of records
for (int i = 0; i < u.length; i++)
result[i] = u[i] + v[i];
return result;
}
//Method finds scaler multiple of a record
private double[] scale(double[] u, double k)
{
double[] result = new double[u.length];
//multiply attributes of record by scaler
for (int i = 0; i < u.length; i++)
result[i] = u[i] * k;
return result;
}
private void printSumSquaredError()
{
double sum = 0;
for (int i = 0; i < numberRecords; i++)
{
sum += distance(centroids[clusters[i]], records[i]);
}
System.out.println(sum);
}
//Method writes records and their cluster to output file
public void display(String outputFile) throws IOException
{
PrintWriter outFile = new PrintWriter(new FileWriter(outputFile));
printSumSquaredError();
unnormalize();
//for each record
for (int i = 0; i < numberRecords; i++)
{
//write attributes of record
for (int j = 0; j < numberAttributes; j++)
outFile.print(records[i][j] + " ");
//write cluster label
outFile.println(clusters[i] + 1);
}
outFile.close();
}
}