Package com.quui.chat

Examples of com.quui.chat.Preprocessor


            Map<String, Vector<Integer>> map, Vector<String> answerDummies,
            boolean wnEnabled) throws IOException {
        this.isWordNetEnabled = wnEnabled;
        this.learning = new Learning(this);
        this.stopwords = stopwords;
        this.preprocessor = new Preprocessor(this.isWordNetEnabled,
                this.stopwords);
        this.topics = topics;
        this.map = map;
        this.answerDummies = answerDummies;
    }
View Full Code Here


     * @see junit.framework.TestCase#setUp()
     */
    public void setUp() {
        Vector<String> stopWords = new Vector<String>();
        stopWords.add("he");
        p = new Preprocessor(false, stopWords);
    }
View Full Code Here

TOP

Related Classes of com.quui.chat.Preprocessor

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.