如何使用 TruncatedSVD() 的输出作为神经网络的输入?

发布于 2025-01-10 08:18:00 字数 239 浏览 0 评论 0原文

我有一个数据集(包含句子),我需要对其执行向量化,然后通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙厌世 2025-01-17 08:18:00

尝试 MLPClassifier

from sklearn.decomposition import TruncatedSVD
from sklearn.neural_network import MLPClassifier
from sklearn.pipeline import Pipeline

X_train, X_test, y_train, y_test = # Your dataset

svd = TruncatedSVD(n_components=100, algorithm='arpack')
net = MLPClassifier(hidden_layer_sizes=(100,),
                    learning_rate_init=0.01,
                    learning_rate='invscaling',
                    max_iter=500,
                    solver='adam')
pipe = Pipeline([('svd', svd), ('net', net)])
pipe.fit(X_train, y_train)
test_score = pipe.score(X_test, y_test)  # Accuracy on test set

Try MLPClassifier:

from sklearn.decomposition import TruncatedSVD
from sklearn.neural_network import MLPClassifier
from sklearn.pipeline import Pipeline

X_train, X_test, y_train, y_test = # Your dataset

svd = TruncatedSVD(n_components=100, algorithm='arpack')
net = MLPClassifier(hidden_layer_sizes=(100,),
                    learning_rate_init=0.01,
                    learning_rate='invscaling',
                    max_iter=500,
                    solver='adam')
pipe = Pipeline([('svd', svd), ('net', net)])
pipe.fit(X_train, y_train)
test_score = pipe.score(X_test, y_test)  # Accuracy on test set
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文