/** * Main method for testing this class. * * @param argv should contain the following arguments: * <p>-t training file [-N number of clusters] */ public static void main(String[] argv) { try { System.out.println(ClusterEvaluation.evaluateClusterer(new FarthestFirst(), argv)); } catch (Exception e) { System.out.println(e.getMessage()); e.printStackTrace(); } }