Scipy 矩阵 - Sklearn 的描述

发布于 2025-01-12 09:44:48 字数 282 浏览 0 评论 0原文

我正在使用 sklearn 进行 NPL,将我的数据集放入训练和测试集中,如下所示:

X_train, X_test, y_train, y_test = train_test_split(X,Y,test_size=0.3, shuffle=True,random_state=0,stratify=Y)

如何获得 X_train 和 y_train 的描述(即每个标签有多少个寄存器),因为生成的对象是类'scipy.sparse.csr.csr_matrix' 并且没有描述属性。

I'm working on NPL with sklearn, slipt my data set into training and test sets as follow:

X_train, X_test, y_train, y_test = train_test_split(X,Y,test_size=0.3, shuffle=True,random_state=0,stratify=Y)

How I can get a description of the X_train and y_train (i.e. how many registers has of each label), due that the resulting objects are class 'scipy.sparse.csr.csr_matrix' and does not have a description attribute.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

廻憶裏菂餘溫 2025-01-19 09:44:48

csr_matrix 是一个稀疏矩阵由scipy提供。如果您想检查其内容,可以调用 .toarray() ,返回该矩阵的密集 ndarray 表示。

例如,print(X_train.toarray())

csr_matrix is a sparse matrix provided by scipy. If you want to inspect its content, you could call .toarray() on it, which return a dense ndarray representation of this matrix.

For example, print(X_train.toarray())

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文