![]() |
Runtime parameter.
tfx.orchestration.data_types.RuntimeParameter(
name: Text,
ptype: Type = None,
default: Optional[Union[int, float, Text]] = None,
description: Optional[Text] = None
)
Currently only supported on KubeflowDagRunner.
Attributes | |
---|---|
name
|
The name of the runtime parameter. |
default
|
Default value for runtime params when it's not explicitly specified. |
ptype
|
The type of the runtime parameter. |
description
|
Description of the usage of the parameter. |
Methods
from_json_dict
@classmethod
from_json_dict( dict_data: Dict[Text, Any] ) -> Any
Convert from dictionary data to an object.
to_json_dict
to_json_dict() -> Dict[Text, Any]
Convert from an object to a JSON serializable dictionary.
__eq__
__eq__(
other
)
Return self==value.