I'm having trouble trying to calculate the mean square error in IPython using NumPy. I am sure that the function is correct, but when I try to enter values, it gives me the following TypeError message:
TypeError: unsupported operand type(s) for -: 'tuple' and 'tuple'
Here is my code:
import numpy as np def rmse(predictions, targets): return np.sqrt(((predictions - targets) ** 2).mean()) print rmse((2,2,3),(0,2,6))
Obviously, something is wrong with my inputs. Do I need to install an array before I put it in the rmse(): string?
source share