Skip to content

Commit

Permalink
bump to 0.3.0 (and minor README update)
Browse files Browse the repository at this point in the history
  • Loading branch information
pltrdy committed May 16, 2018
1 parent 809299c commit 8d1cc86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
*A full Python librarie for the ROUGE metric [(paper)](http://www.aclweb.org/anthology/W04-1013).*

### Disclaimer
This is an experimental project.
The results are known to be quite different from official ROUGE scoring script.

see [isssue #2](https://github.com/pltrdy/rouge/issues/2)
This implementation is independant from the "official" ROUGE script (aka. `ROUGE-155`).
Results may be *slighlty* different, see [discussions in #2](https://github.com/pltrdy/rouge/issues/2).

## Quickstart
#### Clone & Install
```shell
git clone https://github.com/pltrdy/rouge
cd pyrouge
sudo python3 setup.py install
python setup.py install
# or
pip install -U .
```
or from pip:
```
sudo pip3 install rouge
pip install rouge
```
#### Use it from the shell (JSON Output)
```
Expand Down
2 changes: 1 addition & 1 deletion rouge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import absolute_import
from rouge.rouge import FilesRouge, Rouge

__version__ = "0.2.1"
__version__ = "0.3.0"
__all__ = ["FilesRouge", "Rouge"]

0 comments on commit 8d1cc86

Please sign in to comment.