1
0
Fork 0

fix(scripts): restore MSE calculation, update some test refs

This commit is contained in:
Sean Sube 2023-06-07 21:12:28 -05:00
parent 7ec2597afb
commit 55614cd9a1
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -451,7 +451,7 @@ def run_test(
mse = find_mse(result, ref)
if mse < (test.mse_threshold * 10):
if mse < test.mse_threshold:
logger.info("MSE within threshold: %.5f < %.5f", mse, test.mse_threshold)
else:
logger.warning("MSE above threshold: %.5f > %.5f", mse, test.mse_threshold)