معرفی شرکت ها


arpa-0.1.0b4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Library for reading ARPA n-gram models.
ویژگی مقدار
سیستم عامل -
نام فایل arpa-0.1.0b4
نام arpa
نسخه کتابخانه 0.1.0b4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Stefan Fischer
ایمیل نویسنده sfischer13@ymail.com
آدرس صفحه اصلی https://github.com/sfischer13/python-arpa
آدرس اینترنتی https://pypi.org/project/arpa/
مجوز MIT
Python ARPA Package =================== Python library for reading ARPA n-gram models. - [Documentation](https://arpa.readthedocs.io/en/latest/) is available. - [Changes](https://github.com/sfischer13/python-arpa/blob/master/HISTORY.md) between releases are documented. - [Bugs](https://github.com/sfischer13/python-arpa/issues) can be reported on the issue tracker. - [Questions](mailto:sfischer13@ymail.com) can be asked via e-mail. - [Source code](https://github.com/sfischer13/python-arpa) is tracked on GitHub. Setup ----- ### Python 3.4+ [![PyPI Python Versions](https://img.shields.io/pypi/pyversions/arpa.svg)](https://pypi.python.org/pypi/arpa) [![PyPI Version](https://img.shields.io/pypi/v/arpa.svg)](https://pypi.python.org/pypi/arpa) In order to install the Python 3 version: $ pip install --user -U arpa ### Python 2.7 [![PyPI Python Versions](https://img.shields.io/pypi/pyversions/arpa-backport.svg)](https://pypi.python.org/pypi/arpa-backport) [![PyPI Version](https://img.shields.io/pypi/v/arpa-backport.svg)](https://pypi.python.org/pypi/arpa-backport) In order to install the Python 2.7 version: $ pip install --user -U arpa-backport Usage ----- The package may be imported directly: import arpa # Python 3.4+ # OR import arpa_backport as arpa # Python 2.7 models = arpa.loadf("foo.arpa") lm = models[0] # ARPA files may contain several models. # probability p(end|in, the) lm.p("in the end") lm.log_p("in the end") # sentence score w/ sentence markers lm.s("This is the end .") lm.log_s("This is the end .") # sentence score w/o sentence markers lm.s("This is the end .", sos=False, eos=False) lm.log_s("This is the end .", sos=False, eos=False) Development ----------- [![Travis](https://img.shields.io/travis/sfischer13/python-arpa.svg)](https://travis-ci.org/sfischer13/python-arpa) [![Documentation Status](https://readthedocs.org/projects/arpa/badge/?version=latest)](https://arpa.readthedocs.io/en/latest/?badge=latest) [![Coverage Status](https://coveralls.io/repos/sfischer13/python-arpa/badge.svg?branch=master&service=github)](https://coveralls.io/github/sfischer13/python-arpa?branch=master) *Contributions are welcome!* Write a bug report or send a pull request. Other [contributors](https://github.com/sfischer13/python-arpa/graphs/contributors) have done so before. License ------- Copyright (c) 2015-2018 Stefan Fischer The source code is available under the **MIT License**. See [LICENSE](https://github.com/sfischer13/python-arpa/blob/master/LICENSE) for further details. History ======= All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). You should [Keep a CHANGELOG](https://keepachangelog.com/), too! [Next Release](https://github.com/sfischer13/python-arpa/compare/0.1.0b3...HEAD) -------------------------------------------------------------------------------- ### Added ### Changed ### Deprecated ### Fixed ### Removed ### Security [0.1.0b4](https://github.com/sfischer13/python-arpa/compare/0.1.0b3...0.1.0b4) - 2018-12-12 ------------------------------------------------------------------------------------------- [0.1.0b3](https://github.com/sfischer13/python-arpa/compare/0.1.0b2...0.1.0b3) - 2018-12-06 ------------------------------------------------------------------------------------------- [0.1.0b2](https://github.com/sfischer13/python-arpa/compare/0.1.0b1...0.1.0b2) - 2018-04-28 ------------------------------------------------------------------------------------------- [0.1.0b1](https://github.com/sfischer13/python-arpa/compare/0.1.0a6...0.1.0b1) - 2015-09-13 ------------------------------------------------------------------------------------------- [0.1.0a6](https://github.com/sfischer13/python-arpa/compare/0.1.0a5...0.1.0a6) - 2015-07-24 ------------------------------------------------------------------------------------------- [0.1.0a5](https://github.com/sfischer13/python-arpa/compare/0.1.0a4...0.1.0a5) - 2015-07-19 ------------------------------------------------------------------------------------------- [0.1.0a4](https://github.com/sfischer13/python-arpa/compare/0.1.0a3...0.1.0a4) - 2015-07-14 ------------------------------------------------------------------------------------------- [0.1.0a3](https://github.com/sfischer13/python-arpa/compare/0.1.0a2...0.1.0a3) - 2015-07-10 ------------------------------------------------------------------------------------------- [0.1.0a2](https://github.com/sfischer13/python-arpa/compare/0.1.0a1...0.1.0a2) - 2015-07-05 ------------------------------------------------------------------------------------------- 0.1.0a1 - 2015-07-05 -------------------- First release on PyPI.


زبان مورد نیاز

مقدار نام
~=3.4 Python


نحوه نصب


نصب پکیج whl arpa-0.1.0b4:

    pip install arpa-0.1.0b4.whl


نصب پکیج tar.gz arpa-0.1.0b4:

    pip install arpa-0.1.0b4.tar.gz