12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import typing
- from enum import Enum
- from fate_flow.entity import BaseEntity
- class MetricType(Enum):
- LOSS = 'LOSS'
- DOWNLOAD = 'DOWNLOAD'
- CACHE_INFO = 'cache_info'
- CHECKPOINT_INFO = 'checkpoint_info'
- UPLOAD = 'UPLOAD'
- COMPONENT_MODEL_INFO = 'component_model_info'
- class Metric(BaseEntity):
- def __init__(self, key, value: float, timestamp: float = None):
- self.key = key
- self.value = value
- self.timestamp = timestamp
- @classmethod
- def from_dict(cls, d: dict):
- return Metric(d.get("key"), d.get("value"), d.get("timestamp"))
- class MetricMeta(BaseEntity):
- def __init__(self, name: str, metric_type: typing.Union[MetricType, str], extra_metas: dict = None):
- self.name = name
- self.metric_type = metric_type
- self.metas = {}
- if extra_metas:
- self.metas.update(extra_metas)
- self.metas['name'] = name
- self.metas['metric_type'] = metric_type
- def update_metas(self, metas: dict):
- self.metas.update(metas)
- def to_dict(self):
- return self.metas
- @classmethod
- def from_dict(cls, d: dict):
- metas = d.get("metas", {})
- if d.get("extra_metas"):
- metas.update(d["extra_metas"])
- return MetricMeta(d.get("name"), d.get("metric_type"), extra_metas=metas)
|