Don't make things complicated when pipelining your steps is all you need.
import pipetrackYou can start logging your steps with:
pipetrack.start(_ih)You can start new pipeline phase with:
pipetrack.start_phase("train data processing")After executing needed steps, declare a new phase with:
pipetrack.start_phase("model_definition")Finish current pipeline logging with
pipetrack.finish(_ih)You can start new logging with new pipetrack.start(_ih) function call.
Please, consider using specified syntax (not ' but "; no whitespaces in code).
