def get_positive_comments(self, cluster):
        top5_positive_comments = cluster.separate_comments()[0][0:5]
        return list(map(lambda comment: dict([(comment.agree, comment.content)]), top5_positive_comments))