Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created July 1, 2018 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/d970f5ae0b48684f97cfe115279ffda1 to your computer and use it in GitHub Desktop.
Save NMZivkovic/d970f5ae0b48684f97cfe115279ffda1 to your computer and use it in GitHub Desktop.
private static void PrintMetrics(string name, BinaryClassificationMetrics metrics)
{
Console.WriteLine($"*************************************************");
Console.WriteLine($"* Metrics for {name} ");
Console.WriteLine($"*------------------------------------------------");
Console.WriteLine($"* Accuracy: {metrics.Accuracy}");
Console.WriteLine($"* Entropy: {metrics.Entropy}");
Console.WriteLine($"*************************************************");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment