removed debug

This commit is contained in:
rjawor 2019-06-26 12:53:47 +02:00
parent 6972ff2f5b
commit 9acdeacafb
1 changed files with 0 additions and 2 deletions

View File

@ -27,8 +27,6 @@ class LemmatizerResource(Resource):
return result, 200
def processSentence(self, sentence, language):
print("Processing sentence %s in language %s" % (sentence, language))
tokens = [self.lemmatizeWord(token, language) for token in sentence.split()]
return {'tokens':' '.join(tokens)}