
nlp
文章平均质量分 59
zxye
中科大学生
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Stanford coreNLP源码学习(1)
代码 //openie is dependent on tokenize,ssplit,pos,depparse public class Try1 { public static void main(String[] args){ Properties props = new Properties(); //props是一个类似map的结构原创 2016-12-10 22:47:45 · 3119 阅读 · 2 评论 -
NLP学习(正则化)
学习自 Speech and language processing 3rd ed https://web.stanford.edu/~jurafsky/slp3/注:以下双斜线中间的都表示匹配模式 /*/1.基础正则表达式模式输入你想要匹配的字符 注意:正则表达式是大小写敏感的,若现在想匹配W或w,可以使用 /[Ww]/ 做匹配 方括号[]中间的内容只要匹配其中的一个就算匹配成功 若觉原创 2016-12-20 14:36:19 · 1544 阅读 · 0 评论