File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,11 @@ def main():
52
52
if ref_mode == "SingleStream" :
53
53
if re .match (".*Early stopping 90th percentile estimate" , line ):
54
54
ref_score = line .split (": " ,1 )[1 ].strip ()
55
- ref_score = 1e9 / float (ref_score )
56
55
continue
57
56
58
57
if ref_mode == "MultiStream" :
59
58
if re .match (".*Early stopping 99th percentile estimate" , line ):
60
59
ref_score = line .split (": " ,1 )[1 ].strip ()
61
- ref_score = 1e9 / float (ref_score )
62
60
continue
63
61
64
62
if ref_mode == "Server" :
@@ -92,13 +90,11 @@ def main():
92
90
if test_mode == "SingleStream" :
93
91
if re .match (".*Early stopping 90th percentile estimate" , line ):
94
92
test_score = line .split (": " ,1 )[1 ].strip ()
95
- test_score = 1e9 / float (test_score )
96
93
continue
97
94
98
95
if test_mode == "MultiStream" :
99
96
if re .match (".*Early stopping 99th percentile estimate" , line ):
100
97
test_score = line .split (": " ,1 )[1 ].strip ()
101
- test_score = 1e9 / float (test_score )
102
98
continue
103
99
104
100
if test_mode == "Server" :
You can’t perform that action at this time.
0 commit comments