}
FileOutputStream fos = null;
ObjectOutputStream out = null;
fos = new FileOutputStream(clusteroutpath);
out = new ObjectOutputStream(fos);
out.writeObject(results.getClustering());
out.close();
}
if (evaluationoutpath != null) {
if (!evaluationoutpath.exists()) {