搜索

大约有 50 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.2921秒)

21.RE:1265

发布时间:2008-03-05 17:03 t By Mistruster

make[2]: *** No rule to make target `rules_cht.utf8.ini', needed by `all-am'. Stop. make: *** [all] Error 2 报错,但是能用 [[i] 本帖最后由 Mistruster 于 2008-3-5 17:44 编辑 [/i]]

22.为什么只打印出里面的数字,中文直接不分词

发布时间:2013-04-12 23:04 t By xiaodai

...scws = new PSCWS4(); $pscws->set_dict('scws/dict.utf8.xdb'); $pscws->set_rule('scws/rules.utf8.ini'); $pscws->set_ignore(true); $pscws->send_text($title); $words = $pscws->get_tops(10); $tags = array(); foreach ($words as $val) { $tags[] = $val['word']; } $pscws->close(); return $tags; }...

23.单个字母或单个字就截掉不出现了?

发布时间:2014-01-09 08:01 t By gardennet

...s -> set_charset('utf-8'); $cws->set_dict('dict.utf8.xdb'); $cws->set_rule('pscws4/etc/rules.utf8.ini'); $cws->send_text($title); $words = $cws->get_tops(10); $cws->close(); $tags = array(); foreach ($words as $val) { $tags[] = $val['word']; } return implode(',', $tags); } ...

24.RE: [2012] SCWS-1.2.0 发布,BSD协议、支持自定义词库、PHP5.4

更新时间:2012-03-29 15:03 t By gnhao

$so->set_dict('D:\php\scws\etc\dict.utf8.xdb'); $so->set_rule('D:\php\scws\etc\rules.utf8.ini'); $so->add_dict('D:\php\www\htdocs\dict_extra.txt', SCWS_XDICT_TXT); hm你好。 上边的代码的确可以自定义词库,现在的scws能否直接把词加入核心词库了啊?比如直接加...

25.scws_get_tops方法问题

更新时间:2011-09-16 21:09 t By wodeln

...\DedeAMPZ\WebRoot\Default\tld\dede\getwen.php on line 6 Warning: scws_set_rule() [function.scws-set-rule]: open_basedir restriction in effect. File(C:\Program Files\scws\etc\rules.ini) is not within the allowed path(s): (D:/DedeAMPZ/WebRoot/Default) in D:\DedeAMPZ\WebRoot\Default\tld\dede\getwen.ph...

26.使用自定义词库的时候,部分词会丢失

更新时间:2014-04-18 17:04 t By tianly

...'/usr/local/scws/etc/dict.utf8.xdb'); //设置分词所用规则 $so->set_rule('/usr/local/scws/etc/rules.utf8.ini'); //分词前去掉标点符号 $so->set_ignore(false); //是否复式分割,如“中国人”返回“中国+人+中国人”三个词。 $so->set_multi(false); //设...

27.求救PSCWS4问题

发布时间:2010-07-21 10:07 t By FG2008

...gnore('yes'); $pscws->set_dict('E:/scws/etc/dict.utf8.xdb'); $pscws->set_rule('E:/scws/etc/rules_cht.utf8.ini'); // 分词调用 send_text() 将待分词的字符串传入, 紧接着循环调用 get_result() 方法取回一系列分好的词 // 直到 get_result() 返回 false 为止 // 返...

28.RE: 遇到一个分词错误的问题

发布时间:2014-02-10 10:02 t By hightman

rule.utf8.ini里那些调节是通过常用词性组合来改变权重,这要求 词典的词性必须十分准确才行

29.RE:1265

发布时间:2008-09-09 00:09 t By terry39

...; /* }}} */ [/code] 编译后 在php代码中指定 dict字典和rule规则文件就可以了 $cws->set_dict('/usr/local/scws/etc/dict_chs_utf8.xdb'); $cws->set_rule('/usr/local/scws/etc/rules.utf8.ini');

30.自定义词库用不了。非常不解啊。。

发布时间:2011-10-21 16:10 t By ci169

... echo 'ok'; } else { echo 'no'; } $this -> so->set_rule('rules.utf8.ini'); } function word_list($text) { $time_start = $this -> get_microtime(); $this -> so->send_text($text); while ($temp = $this -> so->get_result()) { foreach ($temp as $key=>$val) ...

12345
  • 时间不限
  • 按相关性排序