Pullword 中文分词

时间:2019-09-03 11:19:21   收藏:0   阅读:89
npm install pullword

?

var defaultOptions = {
    url: 'http://api.pullword.com/post.php', /* api url */
    threshold: 0.5, /* must be [0-1] */
    debug: 0, /* debug=1, debug mode in on(show all probabilities of each word) */
    array: 1 /* array=0, return raw-string */
};


var api = require('pullword')(defaultOptions);


api.pullword('老板来碗牛肉面,不要香菜。', function (err, result) {
    console.log(result);
});

// ['老板', '牛肉', '牛肉面', '不要', '香菜']

?

?

?

?

?

原文:https://www.cnblogs.com/neo-java/p/11451018.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!