강의

멘토링

커뮤니티

Inflearn Community Q&A

ioip06073438's profile image
ioip06073438

asked

[PyTorch] Deep Learning Leading to Practical AI - From Basics to Paper Implementation

Cross-Validation

학습과 평가시 Loss 함수가 다른 이유

Resolved

Written on

·

234

0

학습 할때는 MSE를 쓰고 평가 할때는 RMSE를 쓰는 이유가 있을까요??

python머신러닝딥러닝인공신경망pytorch

Answer 1

0

dlbro님의 프로필 이미지
dlbro
Instructor

안녕하세요.

MSE는 원래 값의 단위가 제곱된 형태로 계산되기 때문에 평가시 원래 단위로 보정하기 위해 루트을 씌운 RMSE로 사용합니다!

 

감사합니다.

ioip06073438's profile image
ioip06073438

asked

Ask a question