You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should explore cleaning up what gets printing during an OG-Core run and how it gets printed.
Currently, the steady-state GE loop errors show up as np.float64(). We should format these output to show fewer decimals and to not show the np.float.
Copilot gave a [nitpick] suggestion in PR Add comprehensive Dask performance benchmark tests #1049 to "Consider using logging instead of print statements for better control over output in test environments. This would allow filtering of debug output during test runs." Change line 186 in test_real_txfunc_benchmarks.py from print(f"Generated {len(data)} valid tax records for year {year}")tologging.info(f"Generated {len(data)} valid tax records for year {year}")`.
Revisit the other output during a compete run and decide what is necessary and desirable.
We should explore cleaning up what gets printing during an OG-Core run and how it gets printed.
test_real_txfunc_benchmarks.py fromprint(f"Generated {len(data)} valid tax records for year {year}")tologging.info(f"Generated {len(data)} valid tax records for year {year}")`.cc: @jdebacker