Example #1
0
 // https://docs.microsoft.com/en-us/dotnet/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net
 // Currently only support impact on the LightGbm
 private static void EvaluateFeatures <T>(ISmartBot <T> smartBot) where T : LabeledDataPoint
 {
     smartBot.EvaluateFeatures(gameLogsPath);
 }
Example #2
0
 // https://docs.microsoft.com/en-us/dotnet/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net
 // Currently only support impact LightGbm algo
 public static void EvaluateFeatures <T>(ISmartBot <T> smartBot) where T : LabeledDataPoint
 {
     smartBot.EvaluateFeatures(dataPath);
 }