Package com.google.refine.clustering

Examples of com.google.refine.clustering.Clusterer.initializeFromJSON()


                clusterer = new kNNClusterer();
            } else  {
                clusterer = new BinningClusterer();
            }
               
            clusterer.initializeFromJSON(project, clusterer_conf);
           
            clusterer.computeClusters(engine);
           
            respondJSON(response, clusterer);
            logger.info("computed clusters [{},{}] in {}ms", new Object[] { type, clusterer_conf.getString("function"), Long.toString(System.currentTimeMillis() - start) });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.