728x90
Streaming metric(or stateful metric)이란, (예를 들어 precision)
First batch때 (True positive, False positive) = (4, 5) -> Precision = (4) / (5) = 0.8
Second batch때 (True positive, False positive) = (0, 3) -> Precision = (4+0) / (5+3) = 0.5
...
방식으로 batch때마다 metric의 평균이 아니라
batch때마다 각 amount들을 누적해서 계산하는 방식의 metric을 가리킨다.
728x90
'ML' 카테고리의 다른 글
contextual data, contextual features, context features (0) | 2020.10.19 |
---|---|
(미완)Python 3.9의 주요 특징 (0) | 2020.10.06 |
[ML] True positive, True negative, False positive, False negative 헷갈리지 않게 하기 (0) | 2020.10.03 |
RNN에 대한 이해 (0) | 2020.09.28 |
시계열 데이터에서 Seasonality가 있다면 (0) | 2020.09.28 |