我已经预先清理了数据,下面显示了前 4 行的格式:
[IN] df.head()
[OUT] Year cleaned
0 1909 acquaint hous receiv follow letter clerk crown...
1 1909 ask secretari state war whether issu statement...
2 1909 i beg present petit sign upward motor car driv...
3 1909 i desir ask secretari state war second lieuten...
4 1909 ask secretari state war whether would introduc...
我调用了 train_test_split() 如下:
[IN] X_train, X_test, y_train, y_test = train_test_split(df['cleaned'], df['Year'], random_state=2)
[Note*] `X_train` and `y_train` are now Pandas.core.series.Series of shape (1785,) and `X_test` and `y_test` are also Pandas.core.series.Series of shape (595,)
然后,我使用以下 TfidfVectorizer 和拟合/转换过程对 X 训练和测试数据进行了矢量化处理:
[IN] v = TfidfVectorizer(decode_error='replace', encoding='utf-8', stop_words='english', ngram_range=(1, 1), sublinear_tf=True)
X_train = v.fit_transform(X_train)
X_test = v.transform(X_test)
我现在处于通常应用分类器等的阶段(如果这是一组平衡的数据)。但是,我初始化了 imblearn 的 SMOTE ()类(以执行过采样)...
[IN] smote_pipeline = make_pipeline_imb(SMOTE(), classifier(random_state=42))
smote_model = smote_pipeline.fit(X_train, y_train)
smote_prediction = smote_model.predict(X_test)
...但这会导致:
[OUT] ValueError: "Expected n_neighbors <= n_samples, but n_samples = 5, n_neighbors = 6.
我试图减少 n_neighbors 的数量,但无济于事,任何提示或建议将不胜感激。谢谢阅读。
-------------------------------------------------- -------------------------------------------------- --------------------------------
编辑:
数据集/数据框 ( df
) 包含两列 2380 行,如上所示df.head()
。X_train
包含 1785 行格式为字符串 ( df['cleaned']
) 的行,y_train
还包含 1785 行格式为字符串 ( df['Year']
)。
TfidfVectorizer()
使用:X_train
和的后矢量化X_test
分别从pandas.core.series.Series
形状 '(1785,)' 和 '(595,)' 转换scipy.sparse.csr.csr_matrix
为形状 '(1785, 126459)' 和 '(595, 126459)'。
至于类的数量:使用Counter()
,我计算出有 199 个类(年),类的每个实例都附加到上述df['cleaned']
数据的一个元素,其中包含从文本语料库中提取的字符串列表。
此过程的目标是根据词汇表自动确定/猜测输入文本数据的年份、十年或世纪(任何程度的分类都可以!)。