fix: removes bad logging in multiprocessing function
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good

This commit is contained in:
Deepak Mallubhotla 2023-04-09 18:12:57 -05:00
parent 17ae84879d
commit 8fd1b75e13
Signed by: deepak
GPG Key ID: BEBAEBF28083E022

View File

@ -40,8 +40,6 @@ def get_a_result_fast_filter(input) -> int:
for temp in dot_inputs_dict.keys():
dot_inputs = dot_inputs_dict[temp]
lows, highs = low_high_dict[temp]
_logger.info(f"current sample length: {len(current_sample)}")
_logger.info(f"workng on temp {temp}")
for di, low, high in zip(dot_inputs, lows, highs):
if len(current_sample) < 1: