Package edu.mit.simile.vicino

Examples of edu.mit.simile.vicino.NGramTokenizer


    Distance _distance;
   
    Map<String,Set<String>> blocks = new HashMap<String,Set<String>>();
   
    public NGramClusterer(Distance d, int blockSize) {
        _tokenizer = new NGramTokenizer(blockSize);
        _distance = d;
    }
View Full Code Here

TOP

Related Classes of edu.mit.simile.vicino.NGramTokenizer

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.