ExecutionInfo contains information populated during execution phase.
tfx.orchestration.data_types.ExecutionInfo(
input_dict: Dict[Text, List[types.Artifact]],
output_dict: Dict[Text, List[types.Artifact]],
exec_properties: Dict[Text, Any],
execution_id: int
)
Attributes |
input_dict
|
Updated key -> List of types.Artifact for inputs that was used
during the actual execution.
|
output_dict
|
Updated key -> List of types.Artifact for outputs that was
generated during the actual execution.
|
exec_properties
|
execution properties used in this execution.
|
execution_id
|
Registered execution_id for the execution.
|