Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 384 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 384 Bytes

Summarizer

Extractive graph-based text summarize.

Installation

Latest version

Usage

(require '[summarizer.core :refer [summarize]])

;; the text is reduced to 20% of its original length.
(summarize "some-file.txt")

;; or you may want to set summarization ratio to 25%
(summarize "some-file.txt" 0.25)