in utils/function_normalizer.py [0:0]
def normalize_functions(self, functions):
lengths = []
new_functions = []
for f in functions:
f, length = self.normalize(f)
lengths.append(length)
new_functions.append(f)
return new_functions, lengths