답변 5
1
0
10:05에서
pipeline.fit(x_train, y_train)
으로 하면 아래와 같은 오류가 납니다.
Found input variables with inconsistent numbers of samples: [1, 17500]
x_train의 shape는 (1, 17500)이고
x_train['review']의 shape는 (17500, )으로 차이가 있어서 생기는 문제 같은데, 이게 왜 문제가 되는지는 잘 모르겠습니다.
pipeline 안의 counter vectorizer가 받을 수 있는 shape가 (n, ) 형태여서 그런걸까요..?
0
0
0