Metadata-Version: 1.1
Name: arpa
Version: 0.1.0a4
Summary: This is a library for reading ARPA n-gram models.
Home-page: https://github.com/sfischer13/python-arpa/
Author: Stefan Fischer
Author-email: sfischer13@ymail.com
License: MIT
Description: Python ARPA Package
        ===================
        
        |PyPI Version| |PyPI Downloads| |Travis| |Coverage Status|
        
        | This is a library for reading ARPA n-gram models.
        | It was initiated by Stefan Fischer and is developed and maintained by
          many others.
        
        -  `Questions <mailto:sfischer13@ymail.com>`__ can be asked via e-mail.
        -  `Source code <http://github.com/sfischer13/python-arpa>`__ is tracked
           on GitHub.
        -  `Changes <CHANGELOG.md>`__ between releases are documented.
        -  `Bugs <https://github.com/sfischer13/python-arpa/issues>`__ can be
           reported on the issue tracker.
        
        Install
        -------
        
        The package is available on
        `PyPI <https://pypi.python.org/pypi/arpa>`__:
        
        ::
        
            $ pip install arpa
        
        | Python 3.2+ is required: |PyPI Python Versions|
        | Wheels are supported: |PyPI Wheel|
        
        Use
        ---
        
        The package may be imported directly:
        
        ::
        
            import arpa
            models = arpa.loadf("foo.arpa")
            lm = models[0]  # ARPA files may contain several models.
            lm.p("in the end")  # p(end|in, the)
        
        Contribute
        ----------
        
        | Write a bug report or send a pull request.
        | Other
          `contributors <https://github.com/sfischer13/python-arpa/graphs/contributors>`__
          have done so before.
        
        -  `Roadmap <TODO.md>`__ of planned improvements
        -  `Issues <https://github.com/sfischer13/python-arpa/issues>`__ that
           have been reported
        
        License |License|
        -----------------
        
        | Copyright (c) 2015 Stefan Fischer
        | The source code is available under the `MIT
          License <http://www.opensource.org/licenses/mit-license.php>`__.
        | See `LICENSE <LICENSE>`__ for further details.
        
        .. |PyPI Version| image:: https://img.shields.io/pypi/v/arpa.svg
           :target: https://pypi.python.org/pypi/arpa
        .. |PyPI Downloads| image:: https://img.shields.io/pypi/dm/arpa.svg
           :target: https://pypi.python.org/pypi/arpa
        .. |Travis| image:: https://img.shields.io/travis/sfischer13/python-arpa.svg
           :target: https://travis-ci.org/sfischer13/python-arpa
        .. |Coverage Status| image:: https://coveralls.io/repos/sfischer13/python-arpa/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/sfischer13/python-arpa?branch=master
        .. |PyPI Python Versions| image:: https://img.shields.io/pypi/pyversions/arpa.svg
           :target: https://pypi.python.org/pypi/arpa
        .. |PyPI Wheel| image:: https://img.shields.io/pypi/wheel/arpa.svg
           :target: https://pypi.python.org/pypi/arpa
        .. |License| image:: https://img.shields.io/github/license/sfischer13/python-arpa.svg
           :target: LICENSE
        
Keywords: ARPA n-gram ngram language model LM language technology LT computational linguistics CL natural language processing NLP
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Linguistic
