Examples of NGramClusterer


Examples of edu.mit.simile.vicino.clustering.NGramClusterer

        long vptree_elapsed = System.currentTimeMillis() - vptree_start;
        int vptree_distances = distance.getCount();
        distance.resetCounter();
       
        long ngram_start = System.currentTimeMillis();
        Clusterer ngram_clusterer = new NGramClusterer(distance,blocking_size);
        for (String s: strings) {
            ngram_clusterer.populate(s);
        }
        List<Set<Serializable>> ngram_clusters = ngram_clusterer.getClusters(radius);
        long ngram_elapsed = System.currentTimeMillis() - ngram_start;
        int ngram_distances = distance.getCount();
        distance.resetCounter();
       
        log("VPTree found " + vptree_clusters.size() + " in " + vptree_elapsed + " ms with " + vptree_distances + " distances\n");
View Full Code Here

Examples of edu.mit.simile.vicino.clustering.NGramClusterer

                _blockingNgramSize = params.getInt("blocking-ngram-size");
                logger.debug("Use blocking ngram size: {}",_blockingNgramSize);
            } catch (JSONException e) {
                logger.debug("No parameters found, using defaults");
            }
            _clusterer = new NGramClusterer(_distance, _blockingNgramSize);
        }
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.