<Python>/[Sklearn]
sklearn.isotonic.check_increasing 파라미터 정리
9566
2021. 12. 30. 18:00
728x90
isotonic.check_increasing
sklearn.isotonic.check_increasing(x, y)
isotonic.check_increasing 파라미터
# x가 증가하면 y도 단조적으로 증가하는지(True)/감소하는지(False) 파악
x = array-like of shape (n_samples,)
# Training data
y = array-like of shape (n_samples,)
# Training target
728x90