All Projects → kavgan → Rouge 2.0

kavgan / Rouge 2.0

Licence: apache-2.0
ROUGE automatic summarization evaluation toolkit. Support for ROUGE-[N, L, S, SU], stemming and stopwords in different languages, unicode text evaluation, CSV output.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Rouge 2.0

Avalanche
Avalanche: a End-to-End Library for Continual Learning.
Stars: ✭ 151 (-9.58%)
Mutual labels:  metrics, evaluation
Evo
Python package for the evaluation of odometry and SLAM
Stars: ✭ 1,373 (+722.16%)
Mutual labels:  metrics, evaluation
Sourced Ce
source{d} Community Edition (CE)
Stars: ✭ 153 (-8.38%)
Mutual labels:  metrics
Stats
Go package for abstracting stats collection
Stars: ✭ 164 (-1.8%)
Mutual labels:  metrics
Influxdb exporter
A server that accepts InfluxDB metrics via the HTTP API and exports them via HTTP for Prometheus consumption
Stars: ✭ 159 (-4.79%)
Mutual labels:  metrics
Pythonrouge
Python wrapper for evaluating summarization quality by ROUGE package
Stars: ✭ 155 (-7.19%)
Mutual labels:  text-summarization
Go Statsd Client
statsd client for Go
Stars: ✭ 163 (-2.4%)
Mutual labels:  metrics
Minecraft Prometheus Exporter
A Bukkit plugin which exports minecraft server stats to Prometheus
Stars: ✭ 150 (-10.18%)
Mutual labels:  metrics
Map
mean Average Precision - This code evaluates the performance of your neural net for object recognition.
Stars: ✭ 2,324 (+1291.62%)
Mutual labels:  metrics
Github Monitoring
Monitor your GitHub Repos with Docker & Prometheus
Stars: ✭ 163 (-2.4%)
Mutual labels:  metrics
Ngx Dynamic Dashboard Framework
This is a JSON driven angular x based dashboard framework that is inspired by JIRA's dashboard implementation and https://github.com/raulgomis/angular-dashboard-framework
Stars: ✭ 160 (-4.19%)
Mutual labels:  metrics
Opbeat Node
DEPRECATED - See Elastic APM instead: https://github.com/elastic/apm-agent-nodejs
Stars: ✭ 155 (-7.19%)
Mutual labels:  metrics
Api Diff
A command line tool for diffing json rest APIs
Stars: ✭ 164 (-1.8%)
Mutual labels:  evaluation
Appmetrics
App Metrics is an open-source and cross-platform .NET library used to record and report metrics within an application.
Stars: ✭ 1,986 (+1089.22%)
Mutual labels:  metrics
Metrics
Implementation-agnostic metrics for assessing open source community health. Maintained by the CHAOSS Metrics Committee.
Stars: ✭ 165 (-1.2%)
Mutual labels:  metrics
Goose
Load testing tool, inspired by Locust
Stars: ✭ 151 (-9.58%)
Mutual labels:  metrics
Pytorch Nlp
Basic Utilities for PyTorch Natural Language Processing (NLP)
Stars: ✭ 1,996 (+1095.21%)
Mutual labels:  metrics
Skydive
An open source real-time network topology and protocols analyzer
Stars: ✭ 2,086 (+1149.1%)
Mutual labels:  metrics
Opencensus Web
A stats collection and distributed tracing framework
Stars: ✭ 168 (+0.6%)
Mutual labels:  metrics
Hastic Grafana App
Hastic data management server for labeling patterns and anomalies in Grafana
Stars: ✭ 166 (-0.6%)
Mutual labels:  metrics

ROUGE 2.0

ROUGE 2.0 is an easy to use evaluation toolkit for Automatic Summarization tasks. It uses the ROUGE system of metrics which works by comparing an automatically produced summary or translation against a set of reference summaries (typically human-produced). ROUGE is one of the standard ways to compute effectiveness of auto generated summaries. To understand how ROUGE works you can read this article.

Features

The latest version of ROUGE 2.0 supports the following:

  • Evaluation of ROUGE-N (unigram, bigrams, trigrams, etc)
  • Evaluation of ROUGE-L (summary level LCS)
  • Evaluation of ROUGE-S and ROUGE-SU (skip-gram and skip-gram with unigrams)
  • Evaluation of multiple ROUGE metrics at one go
  • Stemming for different languages
  • Stopword removal with customizable stop words
  • Evaluation of unicode texts (e.g. Persian)
  • Minimal formatting requirements for system and reference summaries
  • Output in CSV – this makes it super easy for score analysis
  • Full documentation and support via GitHub Issues

This is an open-source project, so if you want to implement other measures, please read the documentation on how to contribute to this project.

Quick Start

  • Ensure you have Java 1.8 and above installed. You only need the JRE.
  • Download latest version of ROUGE 2.0 distribution zip file
  • Unpack the zip file
  • Move into the ROUGE 2.0 directory cd <rouge2-1.x-runnable>
  • Do a test run: java -jar rouge2-1.x.jar. You should see results in the console and in rouge2-1.x-runnable/results.csv
  • The above step uses the sample summarization tasks under rouge2-1.x-runnable/projects/test-summarization and the default settings in rouge2-1.x-runnable/rouge.properties file.
  • Use the full documentation for summary formatting guidelines and making changes to the settings, etc.
  • To make changes to the ROUGE 2.0 code base, follow the installation steps below.

Citation

To cite the ROUGE 2.0 package, please use the following:

@article{ganesan2015rouge,
  title={ROUGE 2.0: Updated and Improved Measures for Evaluation of Summarization Tasks},
  author={Ganesan, Kavita},
  year={2015}
}

You can download the ROUGE 2.0 report from arXiv.

Installation

To build on the source code of ROUGE 2.0, clone the repository and import the project as a Maven project by selecting the pom.xml file in the root directory from Eclipse, IntelliJ or other IDE's. Next, add the jars under the lib directory to your build path for the code to compile. Note that you can also install the jars in the lib directory by creating a local maven repository for those jar files. All you would need to do after that is to add the local dependencies to your pom.xml.

Reporting Issues & Feature Requests

When reporting issues please use "Github Issues" and include as much detail as possible about your operating system and java version. Whenever possible, please also include a brief, self-contained code example that demonstrates the problem. Visuals are appreciated!

If you need new features that would be useful to the community in general, please open up an issue and label it as feature-request.

Contributing to ROUGE 2.0

Thanks for your interest in contributing code to ROUGE2.0! To contribute code to ROUGE2.0, please create a new branch and submit a pull request early on with your ideas and planned changes or enhancement. Once you get the thumbs up, you can use your usual workflow for development. Your changes will be reviewed and finally accepted for inclusion. Please use meaningful commit messages that intuitively explain what you are trying to achieve.

If you are proposing new evaluation measures, your changes will be included once your paper is accepted at a conference or journal.

License

Please check this license information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].