コード例 #1
0
ファイル: TextCluster.py プロジェクト: idiap/asrt
 def removeTextPunctuation(self):
     """Remove punctuation symbols.
     """
     strText = self.getTextSentence()
     strText = LanguageClassifier.removePunctuation(strText = strText,
                                                    removeDots = False)
     self.setTextSentence(strText)
コード例 #2
0
ファイル: TextCluster.py プロジェクト: colincwilson/asrt
 def removeTextPunctuation(self):
     """Remove punctuation symbols.
     """
     strText = self.getTextSentence()
     strText = LanguageClassifier.removePunctuation(strText=strText,
                                                    removeDots=False)
     self.setTextSentence(strText)
コード例 #3
0
 def __init__(self):
     LanguageClassifier.__init__(self)
コード例 #4
0
ファイル: ClassifierWord.py プロジェクト: colincwilson/asrt
 def __init__(self):
     LanguageClassifier.__init__(self)