in evaluation_pipeline/evaluation.py [0:0]
def convert_to_list(value):
if isinstance(value, str):
value = value.replace('np.int64(', '').replace(')', '')
value = value.replace('np.float64(', '').replace(')', '')
return ast.literal_eval(value)
return value