Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

calculate root mean square error python

def rmse(predictions, targets):
    return np.sqrt(((predictions - targets) ** 2).mean())
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #calculate #root #square #error #python
ADD COMMENT
Topic
Name
1+2 =