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

📄 structuresummarizer.java

📁 dragontoolkit用于机器学习
💻 JAVA
字号:
package dragon.ir.summarize;import dragon.ir.index.*;import java.util.ArrayList;/** * <p>Interface of structural summarizer </p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface StructureSummarizer {    /**     * @return the index reader the current summarizer is working on     */    public IndexReader getIndexReader();    /**     * @param docSet a list of IRDoc objects     * @return a structured summary     */    public TopicSummary summarize(ArrayList docSet);    /**     * The interpretation of the length is subject to the implementations.     * @param docSet a list of IRDoc objects     * @param maxLength the length of the summary     * @return a structured summary     */    public TopicSummary summarize(ArrayList docSet, int maxLength);}

⌨️ 快捷键说明

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