The data structure to hold results from Resolver.
tfx.dsl.components.common.resolver.ResolveResult(
per_key_resolve_result: Dict[Text, List[types.Artifact]],
per_key_resolve_state: Dict[Text, bool]
)
Attributes |
per_key_resolve_result
|
a key -> List[Artifact] dict containing the resolved
artifacts for each source channel with the key as tag.
|
per_key_resolve_state
|
a key -> bool dict containing whether or not the
resolved artifacts for the channel are considered complete.
|
has_complete_result
|
bool value indicating whether all desired artifacts
have been resolved.
|