Source code for mlflow.entities.run_tag

from mlflow.entities._mlflow_object import _MLflowObject
from mlflow.protos.service_pb2 import RunTag as ProtoRunTag


[docs]class RunTag(_MLflowObject): """Tag object associated with a run.""" def __init__(self, key, value): self._key = key self._value = value def __eq__(self, other): if type(other) is type(self): # TODO deep equality here? return self.__dict__ == other.__dict__ return False @property def key(self): """String name of the tag.""" return self._key @property def value(self): """String value of the tag.""" return self._value
[docs] def to_proto(self): param = ProtoRunTag() param.key = self.key param.value = self.value return param
[docs] @classmethod def from_proto(cls, proto): return cls(proto.key, proto.value)