processorBuildListOfWords.run();
BagOfWordsProcessor proc = new BagOfWordsProcessor(Configuration.INITIAL_DATASET, Configuration.OUTPUT_CSV_WORDS);
proc.run();*/
CollectClustersProcessor processor = new CollectClustersProcessor(Configuration.OUTPUT_CSV_FEATURES,
"datasets/clusters_victor.csv",
"datasets/clusters_marina5.csv",
5,
5,
"output/data_with_clusters_final.csv");
processor.run();
}