🏆 총 상금 ****만원
•🥇1위 - 200만원
•🥈2위 - 100만원
•🥉3위 - 50만원
특별상금1 (만원)
•🥇1위 - 80만원
•🥈2위 - 45만원
## 특별상금1 점수 산출 지표
def E1_max(y_true, y_pred):
'''
y_true: dataframe with true values of X,Y,M,V
y_pred: dataframe with pred values of X,Y,M,V
return: maximum E1 error from 700 test samples
'''
_t, _p = np.array(y_true)[:,:2], np.array(y_pred)[:,:2]
return np.max(np.sum(np.square(_t - _p), axis = 1) / 2e+04)
특별상금2
•🥇1위 - 80만원
•🥈2위 - 45만원
## 특별상금2 점수 산출 지표
def E2_max(y_true, y_pred):
'''
y_true: dataframe with true values of X,Y,M,V
y_pred: dataframe with pred values of X,Y,M,V
return: maximum E2 error from 700 test samples
'''
_t, _p = np.array(y_true)[:,2:], np.array(y_pred)[:,2:]
return np.max(np.sum(np.square((_t - _p) / (_t + 1e-06)), axis = 1))
*특별상금용 점수는 최종 순위 상위 10팀 대상 산출
*중복수상 불가, 중복 시 상금 높은 것으로 수상
*특별상금 수상 중복 시, 특별상금2로 수상
*수상자에게는 원자연 유용균, 문성인 박사님과 함께하는 논문 작성 기회