org.ansj.domain.Result Java Examples

The following examples show how to use org.ansj.domain.Result. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WordSegmenter.java    From SnowGraph with Apache License 2.0 6 votes vote down vote up
private static void tokenizeDocxFile(String filePath) {
    File file = new File(filePath);
    DocumentInfo doc = DocumentParser.parseFileToDocumentInfo(file);
    if(doc instanceof WordDocumentInfo) {
        String content = ((WordDocumentInfo) doc).getDocStr();
        Result terms = ToAnalysis.parse(content);
        for (int i = 0; i < terms.size(); i++) {
            String words = terms.get(i).getName();
            boolean filtered = false;
            for(String stopToken : stopTokens)
                if(words.equals(stopToken)) { filtered = true; break; }
            char firstLetter = words.charAt(0);
            if((firstLetter >= 'A' && firstLetter <= 'Z') ||
                    (firstLetter >= 'a' && firstLetter <= 'z') ||
                    (firstLetter >= '0' && firstLetter <= '9'))
                filtered = true;
            if(filtered) continue;
            wordsCN.add(words);
        }
    }
    else System.out.println("Not a docx file");
}
 
Example #2
Source File: AnsjTokenizer.java    From jstarcraft-nlp with Apache License 2.0 5 votes vote down vote up
@Override
public Iterable<AnsjToken> tokenize(CharSequence text) {
    Result result = analysis.parseStr(text.toString());
    for (Recognition recognition : recognitions) {
        recognition.recognition(result);
    }
    AnsjToken iterable = new AnsjToken(result.iterator());
    return iterable;
}
 
Example #3
Source File: AnsjImpl.java    From chinese-segmentation-evaluation with Apache License 2.0 5 votes vote down vote up
@Override
public List<Term> segment(String sentence) {
    Result result = ToAnalysis.parse(sentence);
    List<Term> terms = new ArrayList<>();
    for (org.ansj.domain.Term term : result) {
        terms.add(new Term(term.getName()));
    }
    return terms;
}
 
Example #4
Source File: DicSegment.java    From youkefu with Apache License 2.0 5 votes vote down vote up
public static String[] byNature(String content , Set<String> expectedNature){
	List<String> wordList = new ArrayList<String>();
	if (!StringUtils.isBlank(content) && expectedNature != null && expectedNature.size() > 0) {
		Result result = NlpAnalysis.parse(content,DicLibrary.gets(librarykeyList));//分词结果的一个封装,主要是一个List<Term>的terms
           List<Term> terms = result.getTerms(); //拿到terms
           for(int i=0; i<terms.size(); i++) {
               String word = terms.get(i).getName(); //拿到词
               String natureStr = terms.get(i).getNatureStr(); //拿到词性
               if(expectedNature.contains(natureStr)) {
                   wordList.add(word+"/"+natureStr);
               }
           }
	}
	return wordList.toArray(new String[wordList.size()]);
}
 
Example #5
Source File: WordSegmenter.java    From SnowGraph with Apache License 2.0 5 votes vote down vote up
public static ArrayList<String> demo(String strToParse) {
    String str = strToParse;
            //"我年纪还轻,阅历不深的时候,我父亲教导过我一句话,我至今还念念不忘。 \n" +
            //"“每逢你想要批评任何人的时候,”他对我说,“你就记住,这个世界上所有的人,并不是个个都有过你拥有的那些优越的条件。”";
    ArrayList<String> ret = new ArrayList<>();
    Result terms = ToAnalysis.parse(str);
    for (int i = 0; i < terms.size(); i++) {
        String words = terms.get(i).getName();// 获取单词
        String nominal = terms.get(i).getNatureStr();// 获取词性
        ret.add(words);
        //System.out.print(words + "\t" + nominal + "\n");
    }
    return ret;
}
 
Example #6
Source File: Analysis.java    From deeplearning4j with Apache License 2.0 5 votes vote down vote up
/**
 * 通过构造方法传入的reader直接获取到分词结果
 * 
 * @return
 * @throws IOException
 */
public Result parse() throws IOException {
    List<Term> list = new ArrayList<>();
    Term temp = null;
    while ((temp = next()) != null) {
        list.add(temp);
    }
    Result result = new Result(list);
    return result;
}
 
Example #7
Source File: DicRecognition.java    From deeplearning4j with Apache License 2.0 5 votes vote down vote up
@Override
public void recognition(Result result) {
    for (Forest forest : forests) {
        if (forest == null) {
            continue;
        }
        recognition(result, forest);
    }
}
 
Example #8
Source File: SynonymsRecgnition.java    From deeplearning4j with Apache License 2.0 5 votes vote down vote up
@Override
public void recognition(Result result) {
    for (Term term : result) {
        SmartForest<List<String>> branch = synonyms.getBranch(term.getName());
        if (branch != null && branch.getStatus() > 1) {
            List<String> syns = branch.getParam();
            if (syns != null) {
                term.setSynonyms(syns);
            }
        }
    }
}
 
Example #9
Source File: UserDicNatureRecognition.java    From deeplearning4j with Apache License 2.0 5 votes vote down vote up
@Override
public void recognition(Result result) {
    for (Term term : result) {
        for (int i = forests.length - 1; i > -1; i--) {
            String[] params = getParams(forests[i], term.getName());
            if (params != null) {
                term.setNature(new Nature(params[0]));
                break;
            }
        }
    }
}
 
Example #10
Source File: StopRecognition.java    From deeplearning4j with Apache License 2.0 5 votes vote down vote up
@Override
public void recognition(Result result) {
    List<Term> list = result.getTerms();
    Iterator<Term> iterator = list.iterator();

    while (iterator.hasNext()) {
        Term term = iterator.next();
        if (filter(term)) {
            iterator.remove();
        }
    }

}
 
Example #11
Source File: ChineseTokenizer.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public ChineseTokenizer(String toTokenize) {
    Result result = NlpAnalysis.parse(toTokenize);
    this.tokenList = result.getTerms();
    this.tokenIter = tokenList.iterator();
}
 
Example #12
Source File: DicAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str, Forest... forests) {
    return new DicAnalysis().setForests(forests).parseStr(str);
}
 
Example #13
Source File: DicAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str) {
    return new DicAnalysis().parseStr(str);
}
 
Example #14
Source File: ToAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str, Forest... forests) {
    return new ToAnalysis().setForests(forests).parseStr(str);
}
 
Example #15
Source File: ToAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str) {
    return new ToAnalysis().parseStr(str);
}
 
Example #16
Source File: IndexAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str, Forest... forests) {
    return new IndexAnalysis().setForests(forests).parseStr(str);
}
 
Example #17
Source File: IndexAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str) {
    return new IndexAnalysis().parseStr(str);
}
 
Example #18
Source File: BaseAnalysis.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
public static Result parse(String str) {
    return new BaseAnalysis().parseStr(str);
}
 
Example #19
Source File: TimeRecognition.java    From deeplearning4j with Apache License 2.0 4 votes vote down vote up
@Override
public void recognition(Result result) {
    String name = "";
    String timeWord = "";
    List<Term> terms = result.getTerms();
    LinkedList<Term> mergeList = new LinkedList<>();
    List<Term> list = new LinkedList<>();

    Pattern pattern =
                    Pattern.compile("((\\d|[0123456789]){1,4}年(\\d|[0123456789]){1,2}月(\\d|[0123456789]){1,2}[日|号](上午|下午|中午|晚)?(\\s)*((\\d|[0123456789]){1,2}([点|时|點|時])?((:)?(\\d|[0123456789]){1,2}(分)?((:)?(\\d|[0123456789]){1,2}(秒)?)?)?)?(\\s)*(PM|AM)?|(\\d|[0123456789]){1,2}(月|月份)(\\d|[0123456789]){1,2}([日|号])?(上午|下午|中午|晚)?(\\s)*((\\d|[0123456789]){1,2}([点|时|點|時])?((:)?(\\d|[0123456789]){1,2}(分)?((:)?(\\d|[0123456789]){1,2}(秒)?)?)?)?(\\s)*(PM|AM)?|(\\d|[0123456789]){1,2}日(上午|下午|中午|晚)?(\\s)*((\\d|[0123456789]){1,2}([点|时|點|時])?((:)?(\\d|[0123456789]){1,2}(分)?((:)?(\\d|[0123456789]){1,2}(秒)?)?)?)?(\\s)*(PM|AM)?|(昨天|昨日|昨日上午|昨日下午|昨日晚上|昨天早上|昨天上午|昨天中午|昨天下午|昨晚|昨夜|昨天晚上|今天早上|今天上午|今天下午|今晚|今天晚上|今日上午|今日下午|今日|今天|前天|今年|去年|当日|当日上午|上午|下午|中午|清晨|前晚|早上|凌晨|今晨|近日|日前|不久前)((\\d|[0123456789]){1,2}[点|时|點|時])?((:)?(\\d|[0123456789]){1,2}(分)?((:)?(\\d|[0123456789]){1,2}(秒)?)?)?(\\s)*(PM|AM)?|[\\“|\"](1|2|3|4|5|6|7|8|9|10|11|12)[·|.| |-](\\d|[0123456789]){1,2}[\\”|\"]|星期[一|二|三|四|五|六|天|日]|(\\d|[0123456789]){1,2}[点|时|點|時]((:)?(\\d|[0123456789]){1,2}(分)?((:)?(\\d|[0123456789]){1,2}(秒)?)?)?(\\s)*(PM|AM)?|(\\d|[0123456789]){4}年((\\d|[0123456789]){1,2}月)?|(\\d|[0123456789]){1,2}月|(正|一|二|三|四|五|六|七|八|九|十|十一|十二|腊)月((初|十|二十|三十)[ 一二三四五六七八九十])?(上午|下午|中午|晚)?|((\\d|[0123456789]){4}-(\\d|[0123456789]){2}-(\\d|[0123456789]){2})?(\\s)*(\\d|[0123456789]){2}:(\\d|[0123456789]){2}:(\\d|[0123456789]){2}|(\\d|[0123456789]){4}-(\\d|[0123456789]){2}-(\\d|[0123456789]){2}(\\s)*((\\d|[0123456789]){2}:(\\d|[0123456789]){2}:(\\d|[0123456789]){2})?)",
                                    Pattern.CASE_INSENSITIVE | Pattern.MULTILINE);

    for (int i = 0; i < terms.size(); i++) {
        boolean isTime = false;
        Term termBase = terms.get(i);
        int timeTermsLength = 1;
        int matchLength = 0; //匹配长度
        for (int j = i; j < terms.size() && matchLength < 11; j++) { //向后最大找14个词匹配是否是时间词
            Term term = terms.get(j);
            name = term.getName();
            timeWord += name;
            Matcher matcher = pattern.matcher(timeWord);
            mergeList.add(term);
            if (matcher.matches()) {
                isTime = true;
                timeTermsLength += (j - i);
                i = j;
            }
            matchLength++;
        }
        if (isTime) {
            Term ft = mergeList.pollFirst();
            for (int k = 0; k < timeTermsLength - 1; k++) {
                ft.merageWithBlank(mergeList.get(k));
            }
            ft.setNature(nature);
            list.add(ft);
        } else {
            list.add(termBase);
        }
        mergeList.clear();
        timeWord = "";

    }
    result.setTerms(list);
}
 
Example #20
Source File: TFIDF.java    From NewsRecommendSystem with MIT License 4 votes vote down vote up
public static Result split(String text)
{
	return ToAnalysis.parse(text);
}
 
Example #21
Source File: DicRecognition.java    From deeplearning4j with Apache License 2.0 2 votes vote down vote up
private void recognition(Result result, Forest forest) {
    List<Term> terms = result.getTerms();

}
 
Example #22
Source File: Analysis.java    From deeplearning4j with Apache License 2.0 2 votes vote down vote up
/**
 * 一句话进行分词并且封装
 * 
 * @param temp
 * @return
 */
public Result parseStr(String temp) {
    return new Result(analysisStr(temp));
}
 
Example #23
Source File: Recognition.java    From deeplearning4j with Apache License 2.0 votes vote down vote up
public void recognition(Result result);