indptr points to row starts in indices and data. I have transformed my matrix into csr matrix by np.savez(). However, I noticed that the first elements of indptr is as follows:
1
1
23
195
213
256
284
317
which says that the first row and the second row start with the same data. What causes this error, or is this an error?