You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import jiagu
-
- text = '厦门明天的天气怎么样'
-
- words = jiagu.seg(text) # 分词
- print(words)
-
- pos = jiagu.pos(words) # 词性标注
- print(pos)
|