reshape(-1, 1) in python3 code example
Example: reshape (n ) to (n 1)
'''
This code is contributed by :
Tanishq Vyas (github : https://github.com/tanishqvyas )
'''
actual = actual.reshape((actual.shape[0], 1))
'''
This code is contributed by :
Tanishq Vyas (github : https://github.com/tanishqvyas )
'''
actual = actual.reshape((actual.shape[0], 1))