Git Product home page Git Product logo

summariser's Introduction

summariser

A basic syntactic text summariser. The logic is based on some rough rules apparently used by the iPhone app "Summly" which is no longer available - IP acquired by Yahoo!

The idea is to regard sentences with a lot of high-frequency tokens as important. Further regard is given to sentences in the first paragraph of the text, and the first sentence in each paragraph.

There are some terse comments in the code that suggest ways to improve scoring using additional features of the Stanford core NLP lib.

Usage is straightfoward. Create a Summariser object, then give it the text of interest and the max number of summary sentences you want:

Summariser summariser = new Summariser();
summariser.summarise(text, 5);

The summary can be easily retrieved:

String summary = summariser.getSummary();

And if you want some elementary document stats:

int numParagraphs = summariser.getNumParagraphs();
int numSentences = summariser.getNumSentences();

(c) 2024 -

summariser's People

Contributors

ajr74 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.