SciPy/Numpyを使用してPythonでスパース行列を連結する最も効率的な方法は何ですか?
ここでは、次のものを使用しました。
>>> np.hstack((X, X2))
array([ <49998x70000 sparse matrix of type '<class 'numpy.float64'>'
with 1135520 stored elements in Compressed Sparse Row format>,
<49998x70000 sparse matrix of type '<class 'numpy.int64'>'
with 1135520 stored elements in Compressed Sparse Row format>],
dtype=object)
回帰で両方の予測子を使用したいのですが、現在の形式は明らかに探しているものではありません。以下のものを入手することは可能でしょうか。
<49998x1400000 sparse matrix of type '<class 'numpy.float64'>'
with 2271040 stored elements in Compressed Sparse Row format>
ディープ フォーマットに変換するには大きすぎます。