Here I got the first row from a numpy matrix
firstRow = (allEigenVectors.T)[0, :]
where firstRow.shape is (1,784)
how can I convert it into (784,) shape ?
Here I got the first row from a numpy matrix
firstRow = (allEigenVectors.T)[0, :]
where firstRow.shape is (1,784)
how can I convert it into (784,) shape ?