Closed Bruno-366 closed 3 years ago
actually this might be adding unnessary code since, instead of:
def get_ranked_phrases_with_scores(self, max): return self.rank_list[0:max]
the caller could just
max=5 r.get_ranked_phrases_with_scores()[0:max]
actually this might be adding unnessary code since, instead of:
the caller could just