├── LICENCE.txt ├── README.md ├── example.py ├── example_ja.py ├── pythonrouge ├── RELEASE-1.5.5 │ ├── README.txt │ ├── RELEASE-NOTE.txt │ ├── ROUGE-1.5.5.pl │ ├── XML │ │ ├── DOM.pm │ │ ├── DOM │ │ │ ├── AttDef.pod │ │ │ ├── AttlistDecl.pod │ │ │ ├── Attr.pod │ │ │ ├── CDATASection.pod │ │ │ ├── CharacterData.pod │ │ │ ├── Comment.pod │ │ │ ├── DOMException.pm │ │ │ ├── DOMImplementation.pod │ │ │ ├── Document.pod │ │ │ ├── DocumentFragment.pod │ │ │ ├── DocumentType.pod │ │ │ ├── Element.pod │ │ │ ├── ElementDecl.pod │ │ │ ├── Entity.pod │ │ │ ├── EntityReference.pod │ │ │ ├── NamedNodeMap.pm │ │ │ ├── NamedNodeMap.pod │ │ │ ├── Node.pod │ │ │ ├── NodeList.pm │ │ │ ├── NodeList.pod │ │ │ ├── Notation.pod │ │ │ ├── Parser.pod │ │ │ ├── PerlSAX.pm │ │ │ ├── ProcessingInstruction.pod │ │ │ ├── Text.pod │ │ │ └── XMLDecl.pod │ │ ├── Handler │ │ │ └── BuildDOM.pm │ │ └── RegExp.pm │ ├── data │ │ ├── WordNet-2.0-Exceptions │ │ │ ├── WordNet-2.0.exc.db │ │ │ ├── adj.exc │ │ │ ├── adv.exc │ │ │ ├── buildExeptionDB.pl │ │ │ ├── noun.exc │ │ │ └── verb.exc │ │ ├── WordNet-2.0.exc.db │ │ └── smart_common_words.txt │ └── runROUGE-test.pl ├── __init__.py └── pythonrouge.py ├── sample ├── reference │ ├── summaryA.1.txt │ ├── summaryA.2.txt │ ├── summaryA.3.txt │ ├── summaryA.4.txt │ ├── summaryB.1.txt │ ├── summaryB.2.txt │ ├── summaryB.3.txt │ └── summaryB.4.txt └── summary │ ├── summaryA.txt │ └── summaryB.txt └── setup.py /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/example.py -------------------------------------------------------------------------------- /example_ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/example_ja.py -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/README.txt -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/RELEASE-NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/RELEASE-NOTE.txt -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/ROUGE-1.5.5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/ROUGE-1.5.5.pl -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/AttDef.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/AttDef.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/AttlistDecl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/AttlistDecl.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Attr.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Attr.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/CDATASection.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/CDATASection.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/CharacterData.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/CharacterData.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Comment.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Comment.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/DOMException.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/DOMException.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/DOMImplementation.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/DOMImplementation.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Document.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Document.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/DocumentFragment.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/DocumentFragment.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/DocumentType.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/DocumentType.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Element.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Element.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/ElementDecl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/ElementDecl.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Entity.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Entity.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/EntityReference.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/EntityReference.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/NamedNodeMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/NamedNodeMap.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/NamedNodeMap.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/NamedNodeMap.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Node.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Node.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/NodeList.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/NodeList.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/NodeList.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/NodeList.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Notation.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Notation.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Parser.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Parser.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/PerlSAX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/PerlSAX.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/ProcessingInstruction.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/ProcessingInstruction.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/Text.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/Text.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/DOM/XMLDecl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/DOM/XMLDecl.pod -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/Handler/BuildDOM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/Handler/BuildDOM.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/XML/RegExp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/XML/RegExp.pm -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/WordNet-2.0.exc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/WordNet-2.0.exc.db -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/adj.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/adj.exc -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/adv.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/adv.exc -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/buildExeptionDB.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/buildExeptionDB.pl -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/noun.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/noun.exc -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/verb.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/verb.exc -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/WordNet-2.0.exc.db: -------------------------------------------------------------------------------- 1 | WordNet-2.0-Exceptions/WordNet-2.0.exc.db -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/data/smart_common_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/data/smart_common_words.txt -------------------------------------------------------------------------------- /pythonrouge/RELEASE-1.5.5/runROUGE-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/RELEASE-1.5.5/runROUGE-test.pl -------------------------------------------------------------------------------- /pythonrouge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonrouge/pythonrouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/pythonrouge/pythonrouge.py -------------------------------------------------------------------------------- /sample/reference/summaryA.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryA.1.txt -------------------------------------------------------------------------------- /sample/reference/summaryA.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryA.2.txt -------------------------------------------------------------------------------- /sample/reference/summaryA.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryA.3.txt -------------------------------------------------------------------------------- /sample/reference/summaryA.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryA.4.txt -------------------------------------------------------------------------------- /sample/reference/summaryB.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryB.1.txt -------------------------------------------------------------------------------- /sample/reference/summaryB.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryB.2.txt -------------------------------------------------------------------------------- /sample/reference/summaryB.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryB.3.txt -------------------------------------------------------------------------------- /sample/reference/summaryB.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/reference/summaryB.4.txt -------------------------------------------------------------------------------- /sample/summary/summaryA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/summary/summaryA.txt -------------------------------------------------------------------------------- /sample/summary/summaryB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/sample/summary/summaryB.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagucci/pythonrouge/HEAD/setup.py --------------------------------------------------------------------------------