Metadata-Version: 2.1
Name: vicorrect
Version: 0.0.5
Summary: Helpful tool to guess correct vietnamese sentence
Home-page: https://github.com/lvhanh270597/correct_vietnamese_sentence
Author: Hanh.Le Van
Author-email: lvhanh.270597@gmail.com
License: UNKNOWN
Description: # Correct Vietnamese Sentence tool
        ## Description
        * Adding accents vietnamese sentence tool
        
        ## Intsallation
        <code> pip install vicorrect</code>
        
        ## Examples:
        ```python
        from vicorrect.model import CorrectVietnameseSentence
        
        dataset = """
        trời buồn trời đổ cơn mưa
        chim khôn chim đậu cành đa"""
        
        corrector = CorrectVietnameseSentence(verbose=False)
        corrector.fit(dataset.splitlines())
        
        testcase = [
            "troi buon",
            "com chim dau",
            "chim dau canh da troi do mua"
        ]
        
        print(corrector.predict(testcase))
        ```
        ## Author
        **Hanh. Le Van**
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
