강의

멘토링

커뮤니티

Inflearn Community Q&A

inwardly10044's profile image
inwardly10044

asked

[Renewal] First-time Python Machine Learning Bootcamp (Easy! Solving Real Kaggle Problems) [Data Analysis/Science Part2]

Regression Model Performance Evaluation: MAE, MSE, RMSE, RMSLE

sklearn v1.5.1

Written on

·

143

·

Edited

0

from sklearn.metrics import root_mean_squared_error
from sklearn.metrics import root_mean_squared_log_error

y_pred = [11, 22, 33, 44]
y_true = [10, 20, 30, 40]

print("RMSE: ", root_mean_squared_error(y_true, y_pred))
print("RMSLE: ", root_mean_squared_log_error(y_true, y_pred))
python머신러닝pandaskaggle

Answer 1

0

funcoding님의 프로필 이미지
funcoding
Instructor

안녕하세요. 참고 내용을 공유해주신 것 같은데 감사합니다~

inwardly10044's profile image
inwardly10044

asked

Ask a question