Metadata-Version: 2.1
Name: anuvaad
Version: 1.0.1
Summary: State of the art translation for Indic languages.
Home-page: https://github.com/notAI-tech/Anuvaad
Author: BEDAPUDI PRANEETH
Author-email: praneeth@bpraneeth.com
License: GPLv3
Description: 
        # Anuvaad
        State of the art translation models for Indic languages.
        
        
        # Installation
        
        ```bash
        # CPU pytorch will be installed if torch is not installed
        pip install --upgrade anuvaad
        ```
        
        # Usage
        
        ```python
        from anuvaad import Anuvaad
        anu = Anuvaad("english-telugu")
        
        # Single sentence translation
        # beam_size is optional and defaults to 4
        anu.anuvaad("YS Jagan is the chief minister of Andhra Pradesh.")
        # "వైఎస్ జగన్ ఆంధ్రప్రదేశ్ ముఖ్యమంత్రి."
        
        # Batch translation
        anu.anuvaad(["YS Jagan is the chief minister of Andhra Pradesh.",
                    "Nara Lokesh suffered a humuliating defeat in Mangalagiri."])
        # ['వైఎస్ జగన్ ఆంధ్రప్రదేశ్ ముఖ్యమంత్రి.', 'మంగళగిరిలో నారా లోకేష్కు ఘోర పరాజయం ఎదురైంది.']
        
        ```
        
        
        |Available Models   | 
        |--------|
        |english-telugu | 
        |english-tamil | 
        |english-malayalam | 
        |english-kannada | 
        |english-marathi | 
        |english-hindi | 
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
