Replies: 1 comment
-
Hey @mgcrea! If you turn off result persistence for your child tasks then you should be able to achieve what you’re looking for. If result persistence is disabled, then Prefect won’t try to serialize you results. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm running ML training jobs and I would ideally like to track each phase of the training in the run UI like if they were separate sub-tasks without having to use actual
@task
since their results would not be easily serialisable.question: should I not be worried about the non-serialisable results of my tasks? And use
@task
anyway? Is there another way to do that?Currently my UI lacks inner insight of the train process:
So in that case I would need something like:
An API like console.group / groupEnd could be nice:
which could allow nested grouping.
Beta Was this translation helpful? Give feedback.
All reactions