forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Express the error rate of my binary classifier
Nikos Karampatziakis edited this page Sep 21, 2016
·
1 revision
Do not use ClassificationError as it only works for multiclass labels. Using the standard arithmetic and logical operators you can express this as
err = (label != (prediction > 0.5))
...
evaluationNodes = (err)
where we assume here that prediction is an estimate of the probability of the positive class given the input.
Getting Started
Additional Documentation
How to use CNTK
Using CNTK Models in Your Code
- Overview
- Nuget Package for Evaluation
- C++ Evaluation Interface
- C# Evaluation Interface
- Evaluating Hidden Layers
- C# Image Transforms for Evaluation
- C# Multi-model Evaluation
- Evaluate in Azure
Advanced topics
Licenses
Source Code & Development