다음과 같은 제곱 평균 제곱근 오류 함수를 구현할 수 있다는 것을 알고 있습니다.
def rmse(predictions, target): return np.sqrt(((predictions - target) ** 2) .mean())
이 rmse 함수가 scipy 또는 scikit-learn과 같은 라이브러리 어딘가에 구현되어 있다면 무엇을 찾고 있습니까?
다음과 같은 제곱 평균 제곱근 오류 함수를 구현할 수 있다는 것을 알고 있습니다.
def rmse(predictions, target): return np.sqrt(((predictions - target) ** 2) .mean())
이 rmse 함수가 scipy 또는 scikit-learn과 같은 라이브러리 어딘가에 구현되어 있다면 무엇을 찾고 있습니까?