I have 3 numpy csr matrixes a, b, c of shape
(69918, 7559)
(17480, 7559)
(21850, 7559)
these are the return of numpy.hstack((some matrices ....)).to_csr()
I want to join them and convert them into shape
(69918+17480+21850, 7559)
How should I do it. I tried numpy.vstack function but that converts it into (3, 1) shape