[docs]class Scorer(): """Abstract class for scoring strings (i.e. language resemblance)""" [docs] def score(self, text): """Get score of a string""" raise NotImplementedError()