boundless-pizza-95864
12/05/2022, 7:52 AMTrainingArgs
and use that as an input to a task and then fetch an execution of that task using remote, I'll get a TrainingargsSchema
object which is generated from the protobuf I guess. Now I'd like to convert that back to a TrainingArgs
instance. Is this possible?tall-lock-23197
FlyteWorkflowExecution
used to have raw_outputs
but I donβt find it in the recent flytekit versions. @high-accountant-32689, any idea why this has been removed?
For the time being, you can convert the schema to dict <http://dataclass_schema.to|dataclass_schema.to>_dict()
or extract the fields directly from the schema dataclass_schema.epochs
, and create a dataclass.freezing-airport-6809
freezing-airport-6809
boundless-pizza-95864
12/05/2022, 12:26 PMTrainingArgs
execution.inputs.get("training_args", as_type=TrainingArgs)