Metadata-Version: 2.1
Name: similar-sentences
Version: 0.7
Summary: Similar sentence prediction
Home-page: https://github.com/shangan23/similar-sentences
Author: Shankar Ganesh Jayaraman
Author-email: shangan.23@gmail.com
License: UNKNOWN
Description: [![PyPI version](https://badge.fury.io/py/similar-sentences.svg)](https://badge.fury.io/py/similar-sentences)
        
        # similar-sentences
        
        Install the package
        
        ```python
        pip install similar-sentences
        ```
        
        ```python
        from SimilarSentences import SimilarSentences
        model = SimilarSentences('model.zip',"predict")
        text = 'How are you doing?'
        suggestions = model.predict(text, 2, "simple")
        print(suggestions)
        ```
        Output looks like
        
        ```python
        
        ````
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
