forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Deal with the 'No Output nodes found' error
Alexey Orlov edited this page Aug 27, 2016
·
1 revision
Remember that Brainscript is case sensitive. So code like
# Special Nodes
OutputNodes = (ol)
will not work as expected. The names of all special nodes are lower camelCase
# Special Nodes
featureNodes = (features)
labelNodes = (labels)
criterionNodes = (ce)
evaluationNodes = (errs)
outputNodes = (ol)
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