Package dmt.processors

Examples of dmt.processors.CollectClustersProcessor


    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();
  }
View Full Code Here

TOP

Related Classes of dmt.processors.CollectClustersProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.