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

📄 package-info.java

📁 AutoSummary contains the JWords Java Interface for WordNet, and you will need to edit the JWords con
💻 JAVA
字号:
/**
 * Generates contextually-relevant summaries of plain text documents.
 * <p>
 * The version 1.0 release of AutoSummary will contain the classes and methods necessary
 * to generate contextually-relevant summaries of plain text documents. It will accomplish
 * this through a variety of statistical and rule-based methods of Natural Language
 * Processing. First, the part-of-speech and specific word-sense (meaning) is determined
 * for each word. Next, each sentence is deconstructed and the subject/predicate/object
 * is identified. A map of relationships between word is then created. From this, specific
 * themes are identified and memes (general ideas) are generated. Finally, the memes are
 * used to create summaries of the original document of varying length and detail.
 * <p>
 * Currently, only the part-of-speech tagger has been implemented. A JPhrase object is
 * created which contains semantic information about a given phrase of words, including
 * part-of-speech scores and possible word-sense combinations. The part-of-speech tagging
 * method takes the JPhrase and returns a marked-up string with each word in the phrase
 * associated with a tag corresponding to the part-of-speech (noun, verb, adjective, adverb)
 * determined to be most likely used for this particular instance. To make this
 * determination, usage statistics from the WordNet semantic concordance texts are used.
 * <p>
 * AutoSummary works on both Windows and UNIX-like operating systems, and requires the
 * WordNet 2.0 command line tool and database files.
 * <p>
 * AutoSummary uses the WordNet lexical reference system via the JWords Java Interface
 * for WordNet as its source of lexigraphical information. In order to run AutoSummary,
 * you must first install WordNet 2.0 and edit the JWords configuration file.
 * <p>
 * Download and install WordNet 2.0 from Princeton University. Install files for Windows
 * and UNIX are available at <a href="http://wordnet.princeton.edu/" target="new">http://wordnet.princeton.edu/</a>
 * <p>
 * AutoSummary contains the JWords Java Interface for WordNet, and you will need to edit
 * the JWords configuration file to provide a path to the WordNet command line interface.
 * Example paths are listed in config.txt.
 * <p>
 * <a href="http://www.opensource.org/" target="new"><img src="osi-certified-120x100.png"
 * alt="OSI certified" align="right" hspace="3" vspace="3" border="0"></a>
 * This software is OSI Certified Open Source Software.
 * <br>
 * OSI Certified is a certification mark of the <a href="http://www.opensource.org/" target="new">
 * Open Source Initiative</a>.
 * <br>
 * AutoSummary is licensed under the terms of the BSD License.
 * <p>
 * Copyright (c) 2005, Charles F. Greenbacker III
 * <br>
 * All rights reserved.
 * <p>
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 * <p>
 *     * Redistributions of source code must retain the above copyright notice,
 *       this list of conditions and the following disclaimer.
 * <br>
 *     * Redistributions in binary form must reproduce the above copyright notice,
 *       this list of conditions and the following disclaimer in the documentation
 *       and/or other materials provided with the distribution.
 * <br>
 *     * Neither the name of AutoSummary nor the names of its contributors
 *       may be used to endorse or promote products derived from this software without
 *       specific prior written permission.
 * <p>
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 * SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 * <p>
 * WordNet 2.0 Copyright 2003 by Princeton University.  All rights reserved.
 */

package net.artificialminds.AutoSummary;

⌨️ 快捷键说明

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