Exemplo n.º 1
0
def getCleanReviews(reviews):
    clean_reviews = []
    for review in reviews["review"]:
        clean_reviews.append( Util.review_to_wordlist( review, remove_stopwords=True ))
    return clean_reviews