9 references to EvaluateMetricType
Microsoft.ML.LightGbm (8)
LightGbmMulticlassTrainer.cs (8)
111public EvaluateMetricType EvaluationMetric = EvaluateMetricType.Error; 115NameMapping.Add(nameof(EvaluateMetricType), "metric"); 116NameMapping.Add(nameof(EvaluateMetricType.None), "None"); 117NameMapping.Add(nameof(EvaluateMetricType.Default), ""); 118NameMapping.Add(nameof(EvaluateMetricType.Error), "multi_error"); 119NameMapping.Add(nameof(EvaluateMetricType.LogLoss), "multi_logloss"); 128res[GetOptionName(nameof(EvaluateMetricType))] = GetOptionName(EvaluationMetric.ToString());
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
344EvaluationMetric = LightGbmMulticlassTrainer.Options.EvaluateMetricType.Default,