https://github.com/Microsoft/CNTK
Raw File
Tip revision: 1a572f89f0f83240be7d8b58a049b97af65b0d27 authored by liqfu on 17 August 2018, 20:01:47 UTC
ONNX support of TopK
Tip revision: 1a572f8
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://docs.microsoft.com/en-us/cognitive-toolkit/Tutorials
back to top