ตัวชี้วัดการถดถอย: MAE, MSE, R2
วัดความคลาดเคลื่อนของการทำนายตัวเลข
ตัวชี้วัดการถดถอย: MAE, MSE, R2 เป็นบทเรียน Data Science Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Data Science Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Data Science Academy มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Why Measure Error
When a model predicts numbers, you need one honest score for how far off it is. That score is an error metric, your truth-teller. 📏
The Residual Idea
Start with the residual: the gap between the true value and the predicted one. Every regression metric is just a way to summarize these gaps.
residual = y_true - y_predMean Absolute Error
MAE takes the size of each error, ignores the sign, and averages them. It tells you the typical miss in the same units as your target.
from sklearn.metrics import mean_absolute_error
mean_absolute_error(y_true, y_pred)MAE Is Easy to Explain
Because MAE stays in real units, you can say the model is off by about 5 dollars on average. Stakeholders love that plain reading.
Mean Squared Error
MSE squares each error before averaging. Squaring punishes big misses much harder, so a few large errors dominate the score.
from sklearn.metrics import mean_squared_error
mean_squared_error(y_true, y_pred)Squaring Changes the Units
One catch: MSE is in squared units, so dollars become squared dollars. The number is hard to interpret on its own.
Root Mean Squared Error
Take the square root of MSE to get RMSE, back in normal units. It keeps the heavy penalty on big errors but reads cleanly.
rmse = mean_squared_error(y_true, y_pred) ** 0.5MAE vs RMSE
Choose MAE when every error matters equally, and RMSE when large mistakes are especially costly and you want them penalized more.
The R-Squared Score
R2 asks a different question: what fraction of the variation in the target your model explains. Higher means a better fit.
from sklearn.metrics import r2_score
r2_score(y_true, y_pred)Reading R-Squared
An R2 of 1.0 is perfect, 0.0 is no better than guessing the mean. It can even go negative when a model fits worse than that.
Use Them Together
No single number tells the whole story. Pair an error metric like RMSE with R2 to see both the typical miss and the overall fit.
Quick Check
Let's pin down what each regression metric really measures.
Recap
Use MAE for plain average error, RMSE to punish big misses, and R2 for fraction of variance explained. Read them together. 🎯
คำถามที่พบบ่อย
บทเรียน “ตัวชี้วัดการถดถอย: MAE, MSE, R2” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “ตัวชี้วัดการถดถอย: MAE, MSE, R2” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Data Science Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Data Science Academy มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “ตัวชี้วัดการถดถอย: MAE, MSE, R2”
วัดความคลาดเคลื่อนของการทำนายตัวเลข คุณปฏิบัติ Data Science Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Data Science Academy หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Data Science Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน
บทเรียน “ตัวชี้วัดการถดถอย: MAE, MSE, R2” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Data Science Academy นี้ได้ไหม
ได้ บทเรียน Data Science Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- ตัวชี้วัดการถดถอย: MAE, MSE, R2
- ถอดรหัสเมทริกซ์ความสับสน
- ความแม่นยำ ความครอบคลุม และ F1
- ROC, AUC และค่าเกณฑ์