Package seekfeel.utilities.stanfordwrapper

Examples of seekfeel.utilities.stanfordwrapper.PosTag


        }*/
        return totalScore;
    }

    public Double getWordScore(WordPos taggedWord, ArrayList<Word> originalWords) {
        PosTag pTag = taggedWord.getWordTag();
        String tempWord;
        pTag = taggedWord.getWordTag();
        tempWord = originalWords.get(taggedWord.getWordIndex()).word();
        // Check if the Word is in the subjectivity clues
     /*   Double clueWeight = SubjectiveCluesHolder.extractWeight(tempWord, TagParser.parseTagToGeneral(pTag));
View Full Code Here

TOP

Related Classes of seekfeel.utilities.stanfordwrapper.PosTag

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.