Source code for nvflare.app_common.tracking.tracker_types

# Copyright (c) 2023, NVIDIA CORPORATION.  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.

from enum import Enum

ANALYTIC_EVENT_TYPE = "analytix_log_stats"


[docs]class LogWriterName(Enum): TORCH_TB = "TORCH_TENSORBOARD" MLFLOW = "MLFLOW" WANDB = "WEIGHTS_AND_BIASES"
[docs]class TrackConst(object): TRACKER_KEY = "tracker_key" TRACK_KEY = "track_key" TRACK_VALUE = "track_value" TAG_KEY = "tag_key" TAGS_KEY = "tags_key" EXP_TAGS_KEY = "tags_key" GLOBAL_STEP_KEY = "global_step" PATH_KEY = "path" DATA_TYPE_KEY = "analytics_data_type" KWARGS_KEY = "analytics_kwargs" PROJECT_NAME = "project_name" PROJECT_TAGS = "project_name" EXPERIMENT_NAME = "experiment_name" RUN_NAME = "run_name" EXPERIMENT_TAGS = "experiment_tags" INIT_CONFIG = "init_config" RUN_TAGS = "run_tags" SITE_KEY = "site" JOB_ID_KEY = "job_id"