搜索

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

261.scws_get_tops函数的第二个参数无效

发布时间:2012-04-01 16:04 t By emo

PHP5.3.8 SCWS-1.2.0 scws_get_tops 函数的第二个参数无效! demo: scws_get_tops($sh, 5); //输出后仍然是9个关键词。

262.Xunsearch 安装时常见错误解决办法(不断更新)!

更新时间:2011-09-26 10:09 t By hpxl

...tu安装时:./setup.sh 错误提示:[code]Configuring xapian-core-scws ... ----- checking for library containing zlibVersion... -lz checking for uuid/uuid.h... no checking for uuid.h... no configure: error: Neither uuid/uuid.h nor uuid.h found - required for brass, chert and flint (you...

263.使用SCWS的libscws C源码,测试分词不成功

发布时间:2014-01-02 18:01 t By banderuilq

1,下载了SCWS的源码,使用其中的libscws; 2,并下载了 [简体中文(UTF-8) (3.9MB,28万词,2013/01/08更新)] scws-dict-chs-utf8.tar.bz2。 3,使用示例代码: #include #include #define SCWS_PREFIX "/usr/local/scws" main() { scws_t s; scws_res_t r...

264.malloc不检测是否成功

发布时间:2014-03-16 17:03 t By robinjia

现在才发现,scws的源码里有很多地方都没有检测malloc是否成功,如scws.c:1527行附近的下面两行, top = (scws_top_t) malloc(sizeof(struct scws_topword)); top->weight = cur->idf; 182行的下面两行 res = (scws_res_t) malloc(sizeof(struct scws_result)); \ res->off...

265.RE: scws_set_multi复式分割无效

发布时间:2011-11-03 23:11 t By hightman

C语言不要用 1~15 而是必须用上面列的宏定义。

266.RE: 错误模块 php_scws.dll,引起Apache假死

发布时间:2009-09-28 10:09 t By hightman

可能这个 scws.dll 太老了? 你应该下载 1.0.0 的版本才好

267.复合分词的级别"multi" 可以设置分词的长度吗?

发布时间:2012-07-19 11:07 t By calvin

[php] header("Content-type: text/html; charset=utf-8"); var_dump(SCWS('中文分词解析,我的个神啊')); //中文分词解析 function SCWS($title) { set_time_limit(0); $data = array("data"=>$title,"respond"=>"json","ignore"=>'yes', "multi"=>3); $data = http_build_query($data); $r...

268.[bogus] 大bug,add_dict会覆盖原来默认设置的dict,必须显式设置原dict

更新时间:2011-06-10 13:06 t By itlong

...外的字典前,必须显式调用原词典。 如: 通常: $so = scws_new(); $so->add_dict(LIB_DIR.'/scws/phptool/dels.txt', SCWS_XDICT_TXT); $so->send_text($str); $sk = $so->get_result(); 这样,会得不到增加词库的效果, 必须: $so = scws_new(); $so->add_dict(LI...

269.RE: 三个问题需要求教

更新时间:2011-01-17 16:01 t By hightman

...存在于词库中的字词,对于你这个情况,你可以修改 libscws/scws.c 第 680 行把 attr_un 改为 attr_en 即可,如果需要严格一点可以先判断一下 ch 是否为字母, 如以下: strcpy(wmap[i][i]->attr, SCWS_IS_ALPHA(txt[start-1]) ? attr_e...

270.RE: SCWS切分的字符串是否有长度限制?

发布时间:2010-08-22 00:08 t By hightman

请仔细看说明,$so->get_result() 并不是一次调用,需要多次调用直到返回FALSE 例子1. 使用类方法分词

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