Metadata-Version: 2.1
Name: bleuper
Version: 0.2
Summary: A simple lightweight library for computing BLEU scores
Home-page: https://github.com/shvms/bleuper
Author: Shuvam Shah
Author-email: shvms@outlook.com
License: MIT
Description: 
        # bleuper
        A simple lightweight library to help you easily compute BLEU scores.
        ## Usage
        ```python
        from bleuper import BLEU
        ref1 = ['love', 'can', 'always', 'find', 'a', 'way']
        ref2 = ['love', 'makes', 'anything', 'possible']
        tran1 = ['the', 'love', 'can', 'always', 'do']
        tran2 = ['love', 'can', 'make', 'anything', 'possible']
        b = BLEU([ref1, ref2], (0.4, 0.35, 0.25, 0, ))
        score1 = b.compute_score(tran1)
        score2 = b.compute_score(tran2)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5.0
Description-Content-Type: text/markdown
