You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pd.DataFrame(onehot, columns=vocabulary) 실행 시 ValueError: columns cannot be a set 오류가 발생합니다. pd.DataFrame(onehot, columns=list(vocabulary)) 로 수정하면 좋을 것 같습니다!
pd.DataFrame(onehot, columns=vocabulary)실행 시ValueError: columns cannot be a set오류가 발생합니다.pd.DataFrame(onehot, columns=list(vocabulary))로 수정하면 좋을 것 같습니다!cv.get_feature_names()->cv.get_feature_names_out()stopwords->list(stopwords)tfidf = TfidfVectorizer(stop_words=stopwords)->tfidf = TfidfVectorizer(stop_words=list(stopwords))좋은 책 써주셔서 감사합니다 :)