Metadata-Version: 2.1
Name: morra
Version: 1.0.1
Summary: Morphological parser (POS, lemmata, NER etc.)
Home-page: https://github.com/fostroll/morra
Author: Sergei Ternovykh
Author-email: fostroll@gmail.com
License: BSD
Description: <div align="right"><strong>RuMor: Russian Morphology project</strong></div>
        <h2 align="center">Morra: morphological parser (POS, lemmata, NER etc.)</h2>
        
        [![PyPI Version](https://img.shields.io/pypi/v/morra?color=blue)](https://pypi.org/project/morra/)
        [![Python Version](https://img.shields.io/pypi/pyversions/morra?color=blue)](https://www.python.org/)
        [![License: BSD-3](https://img.shields.io/badge/License-BSD-brightgreen.svg)](https://opensource.org/licenses/BSD-3-Clause)
        
        A part of ***RuMor*** project. It provides tools to organize a pipeline for
        complete morphological sentence parsing and named-entity recognition.
        
        Scores on *SynTagRus*: accuracy `98.45%` for POS tagging; `98.74%` for lemmata
        detection.
        
        This project was making with a focus on Russian language, but it can also be
        used with some other languages (European, at least).
        
        ## Installation
        
        ### pip
        
        ***Morra*** supports *Python 3.5* or later. To install it via *pip*, run:
        ```sh
        $ pip install morra
        ```
        
        If you currently have a previous version of ***Morra*** installed, use:
        ```sh
        $ pip install morra -U
        ```
        
        ### From Source
        
        Alternatively, you can also install ***Morra*** from source of this *git
        repository*:
        ```sh
        $ git clone https://github.com/fostroll/morra.git
        $ cd morra
        $ pip install -e .
        ```
        This gives you access to examples that are not included to the *PyPI* package.
        
        ## Usage
        
        Input and output format for ***Morra*** is
        [*CoNLL-U*](https://universaldependencies.org/format.html) when input or
        output is a file, or
        [*Parsed CoNLL-U*](https://github.com/fostroll/corpuscula/blob/master/doc/README_PARSED_CONLLU.md)
        if it is an object. Also, it allows
        [***Corpuscula***'s corpora wrappers](https://github.com/fostroll/corpuscula/blob/master/doc/README_CORPORA.md)
        as input.
        
        [MorphParser Basics](https://github.com/fostroll/morra/blob/master/doc/README_BASICS.md)
        
        [Part of Speach Tagging](https://github.com/fostroll/morra/blob/master/doc/README_POS.md)
        
        [Lemmata Detection](https://github.com/fostroll/morra/blob/master/doc/README_LEMMA.md)
        
        [Morphological Feats Tagging](https://github.com/fostroll/morra/blob/master/doc/README_FEATS.md)
        
        [Named-entity Recognition](https://github.com/fostroll/morra/blob/master/doc/README_NER.md)
        
        [Supplements](https://github.com/fostroll/morra/blob/master/doc/README_SUPPLEMENTS.md)
        
        ## Examples
        
        You can find them in the directory `examples` of our ***Morra*** github
        repository.
        
        ## License
        
        ***Morra*** is released under the BSD License. See the
        [LICENSE](https://github.com/fostroll/morra/blob/master/LICENSE) file for more
        details.
        
Keywords: natural-language-processing nlp morphology
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
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
Description-Content-Type: text/markdown
