You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a Pipeline and configuring the outfolder with a value that's not an absolute path causes the checkpoint call to fail due to trying to write to a file in a subfolder of the same name, e.g. "pypiper_output" --> Path.cwd() / "pypiper_output" / "pypiper_output" / "my_stage.checkpoint"instead ofPath.cwd() / "pypiper_output" / "my_stage.checkpoint"
The text was updated successfully, but these errors were encountered:
When using a
Pipeline
and configuring theoutfolder
with a value that's not an absolute path causes thecheckpoint
call to fail due to trying to write to a file in a subfolder of the same name, e.g."pypiper_output"
-->Path.cwd() / "pypiper_output" / "pypiper_output" / "my_stage.checkpoint"
instead ofPath.cwd() / "pypiper_output" / "my_stage.checkpoint"
The text was updated successfully, but these errors were encountered: