Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Overview
CNTK repository contains examples using CNTK C# API to build, train, and evaluate CNTK neural network models.
LogisticRegression
A hello-world example to train and evaluate a logistic regression model using C#/API. See CNTK 101: Logistic Regression and ML Primer for more details.
MNISTClassifier
This class shows how to build and train a classifier for handwritting data (MNIST).
CifarResNetClassifier
This class shows how to do image classification using ResNet. The model being built is a lite version of Deep Residual Learning for Image Recognition. See Python Tutorials for more details.
TransferLearning
This class demonstrates transfer learning using a pretrained ResNet model. See Python Tutorials for more details.
LSTMSequenceClassifier
This class shows how to build a recurrent neural network model from ground up and how to train the model.