def evaluate(self, test_examples, test_labels): predictions = self.predict(test_examples) print(classification_report(test_labels, predictions))