Source code for find_similar.calc_models
"""
Models for calculation and compare
"""
[docs]
class LanguageNotFoundException(TokenizeException):
"""
Language not found error
"""
def __init__(self, language):
self.language = language
super().__init__(f"Language '{language}' is not supported by nltk module")