swh:1:snp:f50ab94432af916b5fb8b4ad831e8dddded77084
Raw File
Tip revision: c4fb0e5b41012466b1189c831539c46c070dcb01 authored by Dong Yu on 02 January 2017, 01:12:32 UTC
Merge branch 'master' of https://github.com/Microsoft/CNTK into dongyu/htkreaderext
Tip revision: c4fb0e5
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