Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8558B2162 for ; Sat, 23 Apr 2011 23:29:46 +0000 (UTC) Received: (qmail 89124 invoked by uid 500); 23 Apr 2011 23:29:45 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 88937 invoked by uid 500); 23 Apr 2011 23:29:45 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 88930 invoked by uid 99); 23 Apr 2011 23:29:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Apr 2011 23:29:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Apr 2011 23:29:43 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 937B1AF737 for ; Sat, 23 Apr 2011 23:29:06 +0000 (UTC) Date: Sat, 23 Apr 2011 23:29:06 +0000 (UTC) From: "Robert Muir (JIRA)" To: dev@lucene.apache.org Message-ID: <1184556107.78604.1303601346600.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (LUCENE-2522) add simple japanese tokenizer, based on tinysegmenter MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-2522?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2522: -------------------------------- Attachment: LUCENE-2522.patch attached is an updated patch, its still a work in progress (needs some more tests and benchmarking and some other things little fixes). Theres a general pattern for these segmenters (this one, smartchinese, sen) thats a little tricky, that is they want to really look at sentences to determine how to segment. So, I added a base class for this to make writing these segmenters easier, and also to hopefully improve segmentation accuracy. (I would like to switch smartchinese over to it) This class makes it easy to segment sentences with a Sentence BreakIterator... in my opinion it doesnt matter how theoretically good the word tokenization is for these things, if the sentence tokenizer is really bad (I found this issue with both sen and smartchinese). hope to get it committable soon > add simple japanese tokenizer, based on tinysegmenter > ----------------------------------------------------- > > Key: LUCENE-2522 > URL: https://issues.apache.org/jira/browse/LUCENE-2522 > Project: Lucene - Java > Issue Type: New Feature > Components: contrib/analyzers > Reporter: Robert Muir > Priority: Minor > Fix For: 4.0 > > Attachments: LUCENE-2522.patch, LUCENE-2522.patch, LUCENE-2522.patch > > > TinySegmenter (http://www.chasen.org/~taku/software/TinySegmenter/) is a tiny japanese segmenter. > It was ported to java/lucene by Kohei TAKETA , > and is under friendly license terms (BSD, some files explicitly disclaim copyright to the source code, giving a blessing instead) > Koji knows the author, and already contacted about incorporating into lucene: > {noformat} > I've contacted Takeda-san who is the creater of Java version of > TinySegmenter. He said he is happy if his program is part of Lucene. > He is a co-author of my book about Solr published in Japan, BTW. ;-) > {noformat} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org