https://github.com/Microsoft/CNTK
Raw File
Tip revision: 146ca6c3f25b6b55e3a9293bf9cc20dd4c6bb5c8 authored by PengchengHe on 06 January 2017, 15:14:40 UTC
Revert "Revert "Add ReasoNet model as example""
Tip revision: 146ca6c
README.md
# CNTK Tuturial: Logistic regression and multiclass classification

## Overview

In this tutorial we will walk through several complete CNTK examples, showing 
* how to describe a network in our network-description language BrainScript; 
* how to set the learning parameters; and 
* how to read in, and write out, data

We will start with a simple implementation of binary classification using the linear model Logistic Regression. From there, we will expand to multiclass classification towards the end of this tutorial.

## Tutorial

Please find a detailed tutorial that uses the data and configurations in this folder on out website at [https://github.com/Microsoft/CNTK/wiki/Tutorial](https://github.com/Microsoft/CNTK/wiki/Tutorial)
back to top