Examples of WNLookup


Examples of com.quui.chat.mind.wn.WNLookup

            Vector<String> stopwords = io.getStopwords(loc + File.separator
                    + "stopwords");
            Vector<String> answerDummies = io.getStopwords(loc + File.separator
                    + "answer-dummies");
            if (wnLocation != null)
                new WNLookup().init(wnLocation);
            mind = new Mind(stopwords, io.getTopics(), io.getMap(),
                    answerDummies, wnLocation != null);
            Log.logger.info("mind init complete, took "
                    + (System.currentTimeMillis() - s) + " ms.");
        } catch (FileNotFoundException e) {
View Full Code Here

Examples of com.quui.chat.mind.wn.WNLookup

        case 3:
            toPick = POS.VERB;
            break;
        }
        try {
            new WNLookup().init("config/file_properties.xml");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        IndexWord word = WNLookup.getDict().getRandomIndexWord(toPick);
        // normally, don't use complex words
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.