Skip to content

Instantly share code, notes, and snippets.

@iandanforth
Last active December 7, 2018 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iandanforth/55c31f61a97150d416e4b422c244e41d to your computer and use it in GitHub Desktop.
Save iandanforth/55c31f61a97150d416e4b422c244e41d to your computer and use it in GitHub Desktop.
Error Metric Table

Follow along with visualizations

       Error   Absolute Error  Squared Error
      --------------------------------------
Sum  | SE      S|E|            SE^2             
Mean | ME      M|E|            ME^S

Note: SE and ME don't work as distance metrics if you have errors with mixed signs as they will cancel out. Squares and absolute values don't suffer from this issue.

More commonly you'll see these abbreviations

       Error   Absolute Error  Squared Error
      --------------------------------------
Sum  | SE      SAE             SSE             
Mean | ME      MAE             MSE

Sometimes a square root is taken of the above metrics

RSE   - Root of Sum of Errors             - Not used
RME   - Root of Mean of Errors            - Not used
RSAE  - Root of Sum of Absolute Errors    - Uncommon
RMAE  - Root of Mean of Absolute Errors   - Uncommon
RSSE  - Root of Sum of Squared Errors     - Very common - This is the Euclidean Distance
RMSE  - Root of Mean of Squared Errors    - Common
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment