معرفی شرکت ها


bpe-1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Byte pair encoding for graceful handling of rare words in NLP
ویژگی مقدار
سیستم عامل -
نام فایل bpe-1.0
نام bpe
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Stuart Axelbrooke
ایمیل نویسنده stuart@axelbrooke.com
آدرس صفحه اصلی https://github.com/soaxelbrooke/python-bpe
آدرس اینترنتی https://pypi.org/project/bpe/
مجوز MIT
# BPE [![Build Status](https://travis-ci.org/soaxelbrooke/python-bpe.svg?branch=master)](https://travis-ci.org/soaxelbrooke/python-bpe) AKA Byte Pair Encoding. Learns a vocab and byte pair encoding for provided white-space separated text. ## Usage ```bash $ pip3 install bpe ``` ```python from bpe import Encoder # Generated with http://pythonpsum.com test_corpus = ''' Object raspberrypi functools dict kwargs. Gevent raspberrypi functools. Dunder raspberrypi decorator dict didn't lambda zip import pyramid, she lambda iterate? Kwargs raspberrypi diversity unit object gevent. Import fall integration decorator unit django yield functools twisted. Dunder integration decorator he she future. Python raspberrypi community pypy. Kwargs integration beautiful test reduce gil python closure. Gevent he integration generator fall test kwargs raise didn't visor he itertools... Reduce integration coroutine bdfl he python. Cython didn't integration while beautiful list python didn't nit! Object fall diversity 2to3 dunder script. Python fall for: integration exception dict kwargs dunder pycon. Import raspberrypi beautiful test import six web. Future integration mercurial self script web. Return raspberrypi community test she stable. Django raspberrypi mercurial unit import yield raspberrypi visual rocksdahouse. Dunder raspberrypi mercurial list reduce class test scipy helmet zip? ''' encoder = Encoder(200, pct_bpe=0.88) # params chosen for demonstration purposes encoder.fit(test_corpus.split('\n')) example = "Vizzini: He didn't fall? INCONCEIVABLE!" print(encoder.tokenize(example)) # ['__sow', 'vi', 'z', 'zi', 'ni', '__eow', '__sow', ':', '__eow', 'he', 'didn', "'", 't', 'fall', '__sow', '?', '__eow', '__sow', 'in', 'co', 'n', 'ce', 'iv', 'ab', 'le', '__eow', '__sow', '!', '__eow'] print(next(encoder.transform([example]))) # [26, 108, 79, 104, 72, 24, 26, 117, 24, 9, 11, 8, 12, 10, 26, 90, 24, 26, 154, 56, 37, 149, 80, 169, 84, 24, 26, 156, 24] print(next(encoder.inverse_transform(encoder.transform([example])))) # vizzini : he didn ' t fall ? inconceivable ! ```


نیازمندی

مقدار نام
- nltk
- tqdm
- pytest
- hypothesis
- toolz
- mypy


نحوه نصب


نصب پکیج whl bpe-1.0:

    pip install bpe-1.0.whl


نصب پکیج tar.gz bpe-1.0:

    pip install bpe-1.0.tar.gz