如何使用 TruncatedSVD() 的输出作为神经网络的输入?
我有一个数据集(包含句子),我需要对其执行向量化,然后通过 TruncatedSVD() 进行降维以减少数量。特征数为 100。
然后我想使用 svd 输出作为神经网络的输入。但执行 svd 后我无法跟踪输出标签,我该怎么办?
我使用管道来实现此目的以执行逻辑回归。 但我需要执行神经网络。
I have a dataset(contains sentences) on which I need to perform vectorization and then dimensionality reduction through TruncatedSVD() to reduce no. of features to 100.
Then i want to use that svd output as input to neural network. But i cannot keep track of the output label after doing svd, what should i do?
I used pipeline to achieve this to perform logistic regression.
But i need to perform neural network.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
MLPClassifier
:Try
MLPClassifier
: