ML
Streaming or stateful metric
프리랜서를꿈꾸는자
2020. 10. 6. 02:14
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