Metadata-Version: 1.2
Name: text2array
Version: 0.0.5
Summary: Convert your NLP text data to arrays!
Home-page: https://github.com/kmkurn/text2array
Author: Kemal Kurniawan
Author-email: kemal@kkurniawan.com
License: MIT
Description: text2array
        ==========
        
        *Convert your NLP text data to arrays!*
        
        .. image:: https://img.shields.io/pypi/pyversions/text2array.svg?style=flat
           :target: https://img.shields.io/pypi/pyversions/text2array.svg?style=flat
           :alt: Python versions
        
        .. image:: https://img.shields.io/pypi/v/text2array.svg?style=flat
           :target: https://pypi.org/project/text2array
           :alt: PyPI project
        
        .. image:: https://img.shields.io/travis/kmkurn/text2array.svg?style=flat
           :target: https://travis-ci.org/kmkurn/text2array
           :alt: Build status
        
        .. image:: https://img.shields.io/readthedocs/text2array.svg?style=flat
           :target: https://text2array.readthedocs.io
           :alt: Documentation status
        
        .. image:: https://img.shields.io/coveralls/github/kmkurn/text2array.svg?style=flat
           :target: https://coveralls.io/github/kmkurn/text2array
           :alt: Code coverage
        
        .. image:: https://img.shields.io/pypi/l/text2array.svg?style=flat
           :target: https://choosealicense.com/licenses/mit/
           :alt: License
        
        .. image:: https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg
           :target: http://spacemacs.org
           :alt: Built with Spacemacs
        
        **text2array** helps you process your NLP text dataset into Numpy ndarray objects that are
        ready to use for e.g. neural network inputs. **text2array** handles data shuffling,
        batching, padding, and converting into arrays. Say goodbye to these tedious works!
        
        Documentation
        =============
        
        https://text2array.readthedocs.io
        
        Contributing
        ============
        
        Pull requests are welcome! To start contributing, make sure to install all the dependencies.
        
        ::
        
            $ pip install -r requirements.txt
        
        Then install this library as editable package.
        
        ::
        
            $ pip install -e .
        
        Next, setup the pre-commit hook.
        
        ::
        
            $ ln -s ../../pre-commit.sh .git/hooks/pre-commit
        
        Tests and the linter can be run with ``pytest`` and ``flake8`` respectively. The latter also
        runs ``mypy`` for type checking.
        
        License
        =======
        
        MIT
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.6, <4
