forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Monitor the error on a held out set during training or do Cross Validation (CV) during training
Chris Basoglu edited this page Oct 4, 2016
·
1 revision
To monitor the error on a held out set during training specify a "cvReader" section inside your training block. This typically looks the same as the reader section but points to the held out data.
For example:
trainDNN = {
action = "train"
...
reader = {
readerType = "CNTKTextFormatReader"
file = "train.txt"
input = {
features = { dim = 100000 ; format = "sparse" }
labels = { dim = 10; format = "sparse" }
}
}
cvReader = {
readerType = "CNTKTextFormatReader"
file = "validation.txt"
input = {
features = { dim = 100000 ; format = "sparse" }
labels = { dim = 10; format = "sparse" }
}
}
...
}
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