- Mastering Machine Learning on AWS
- Dr. Saket S.R. Mengle Maximo Gurmendez
- 159字
- 2021-06-24 14:23:18
R-squared
Another popular metric that's used in regression problems is the R-squared score, or the coefficient of determination. This score measures the proportion of the variance in the dependent variable that is predictable from the independent variables:

Here, represents the vector of actual values, while
and
represent the vector of predicted values. The mean actual value is
. The denominator of the quotient measures how actual values typically differ from the mean, while the numerator measures how the actual values differ from the predicted values. Note that differences are squared, similar to MSE, and so large differences are penalized heavily.
In a perfect regressor, the numerator is 0, so the best possible value for R2 is 1.0. However, we can see arbitrarily large negative values when the prediction errors are significant.
All four types of evaluation metrics are implemented in machine learning packages and are demonstrated in the following code examples.
- Intel FPGA/CPLD設計(基礎篇)
- 網絡服務器配置與管理(第3版)
- FPGA從入門到精通(實戰篇)
- 電腦常見問題與故障排除
- Creating Dynamic UI with Android Fragments
- 硬件產品經理成長手記(全彩)
- 精選單片機設計與制作30例(第2版)
- 嵌入式系統設計教程
- Artificial Intelligence Business:How you can profit from AI
- Hands-On Machine Learning with C#
- 微軟互聯網信息服務(IIS)最佳實踐 (微軟技術開發者叢書)
- 基于PROTEUS的電路設計、仿真與制板
- Hands-On Deep Learning for Images with TensorFlow
- 單片機原理與技能訓練
- Spring Security 3.x Cookbook