Due to the definition of last_model being an Any:
last_model(mach) = isdefined(mach, :old_model) ? mach.old_model : nothing
all of the operations in OPERATIONS cannot infer output type. This is okay for report, but for predict, the output type might be important for downstream operations, and so this can slow things down.
Due to the definition of
last_modelbeing anAny:all of the operations in
OPERATIONScannot infer output type. This is okay forreport, but forpredict, the output type might be important for downstream operations, and so this can slow things down.