⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chunker.java

📁 一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能
💻 JAVA
字号:
/* * LingPipe v. 3.5 * Copyright (C) 2003-2008 Alias-i * * This program is licensed under the Alias-i Royalty Free License * Version 1 WITHOUT ANY WARRANTY, without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the Alias-i * Royalty Free License Version 1 for more details. * * You should have received a copy of the Alias-i Royalty Free License * Version 1 along with this program; if not, visit * http://alias-i.com/lingpipe/licenses/lingpipe-license-1.txt or contact * Alias-i, Inc. at 181 North 11th Street, Suite 401, Brooklyn, NY 11211, * +1 (718) 290-9170. */package com.aliasi.chunk;/** * The <code>Chunker</code> interface specifies methods for returning * a chunking given a character sequence or character slice. * * <P>Note that a <code>Chunker</code> may be used to implement a * {@link com.aliasi.corpus.Parser} that extends {@link * com.aliasi.corpus.StringParser} by implementing its {@link * com.aliasi.corpus.StringParser#parseString(char[],int,int)} method using * the chunker method {@link #chunk(char[],int,int)}.  This will send * all extracted chunkings to the parser's contained {@link * com.aliasi.corpus.ChunkHandler}. *  * @author  Bob Carpenter * @version 2.1 * @since   LingPipe2.1 */public interface Chunker {    /**     * Return the chunking of the specified character sequence.     *     * @param cSeq Character sequence to chunk.     * @return A chunking of the character sequence.     */    public Chunking chunk(CharSequence cSeq);    /**     * Return the chunking of the specified character slice.     *     * @param cs Underlying character sequence.     * @param start Index of first character in slice.     * @param end Index of one past the last character in the slice.     * @return The chunking over the specified character slice.     */    public Chunking chunk(char[] cs, int start, int end);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -