From 214512daa3ad0e3cf3e6283ec463d73fd09a2763 Mon Sep 17 00:00:00 2001 From: ZwX1616 Date: Mon, 23 Mar 2020 11:50:29 -0700 Subject: [PATCH] dm offsetshould only care about the valid counts old-commit-hash: 05e4365bb6cd62faba181e08b07a92e7fabc3917 --- common/stat_live.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/stat_live.py b/common/stat_live.py index f392956efd..e528c3deac 100644 --- a/common/stat_live.py +++ b/common/stat_live.py @@ -53,7 +53,7 @@ class RunningStat(): class RunningStatFilter(): def __init__(self, raw_priors=None, filtered_priors=None, max_trackable=-1): - self.raw_stat = RunningStat(raw_priors, max_trackable) + self.raw_stat = RunningStat(raw_priors, -1) self.filtered_stat = RunningStat(filtered_priors, max_trackable) def reset(self):