Microsoft Cognitive Toolkit (CNTK), an open source deep-learning toolkit
Перейти к файлу
mogmod 87fb0bd3b7 Fix download url: http://nih.at/libzip is redirected to https://libzip.org 2017-11-17 00:14:29 -05:00
Documentation Remove OpenCV dependency from CNTK core 2017-11-16 18:11:33 -08:00
Examples Updated examples and tests with new Learning APIs. 2017-11-13 15:30:59 -08:00
Manual Updated manuals with new learning APIs 2017-11-12 10:32:37 -08:00
PretrainedModels Update pre-trained image models. 2017-11-16 15:43:29 -08:00
Scripts Upgrade imageio to v2.2.0 from v2.1.1 (#2605) 2017-11-09 23:55:14 -08:00
Source Remove OpenCV dependency from CNTK core 2017-11-16 18:11:33 -08:00
Tests Integrate yuqtang/StageUpdateExamplesTestsWithNewLearningAPIsV4 into master 2017-11-14 02:57:54 +00:00
Tools Fix download url: http://nih.at/libzip is redirected to https://libzip.org 2017-11-17 00:14:29 -05:00
Tutorials Update Tutorials with new learner APIs. 2017-11-10 15:35:50 -08:00
bindings Integrating LotusIR and a few CNTK-ONNX fixes 2017-11-15 21:44:46 -08:00
.clang-format Re-format code using clang-format (plus some post-processing) 2016-01-18 09:36:14 +01:00
.gitattributes enabling native proposal layer and dlib selective search 2017-08-30 17:12:35 +02:00
.gitignore Adding ONNX format support to CNTK. 2017-10-10 01:01:43 -07:00
.gitmodules GitHub Repo as 1bit SGD Repo 2017-01-19 20:10:35 +01:00
CNTK.Common.props Bump version numbers 2017-09-18 10:58:47 -07:00
CNTK.Cpp.props Switch from CNTKCustomMKL to Intel MKLML. MKLML is released with [Intel MKL-DNN](https://github.com/01org/mkl-dnn/releases) as a trimmed version of Intel MKL for MKL-DNN. To set it up: 2017-11-10 11:48:16 -08:00
CNTK.sln Remove OpenCV dependency from CNTK core 2017-11-16 18:11:33 -08:00
CONTRIBUTING.md updating links to old wiki - referencing now the doc site 2017-06-07 15:55:34 +02:00
CppCntk.vssettings Update CppCntk.vssettings (wolfma) 2016-01-22 10:08:52 +01:00
LICENSE.md Update LICENSE.md 2017-09-13 14:58:56 -07:00
Makefile Remove OpenCV dependency from CNTK core 2017-11-16 18:11:33 -08:00
README.md Switch from CNTKCustomMKL to Intel MKLML. MKLML is released with [Intel MKL-DNN](https://github.com/01org/mkl-dnn/releases) as a trimmed version of Intel MKL for MKL-DNN. To set it up: 2017-11-10 11:48:16 -08:00
configure Switch from CNTKCustomMKL to Intel MKLML. MKLML is released with [Intel MKL-DNN](https://github.com/01org/mkl-dnn/releases) as a trimmed version of Intel MKL for MKL-DNN. To set it up: 2017-11-10 11:48:16 -08:00

README.md

Join the chat at https://gitter.im/Microsoft/CNTK

Latest news

2017-11-10. Switch from CNTKCustomMKL to Intel MKLML. MKLML is released with Intel MKL-DNN as a trimmed version of Intel MKL for MKL-DNN. To set it up:

On Linux:

sudo mkdir /usr/local/mklml
sudo wget https://github.com/01org/mkl-dnn/releases/download/v0.11/mklml_lnx_2018.0.1.20171007.tgz
sudo tar -xzf mklml_lnx_2018.0.1.20171007.tgz -C /usr/local/mklml

On Windows:

Create a directory on your machine to hold MKLML, e.g. mkdir c:\local\mklml
Download the file [mklml_win_2018.0.1.20171007.zip](https://github.com/01org/mkl-dnn/releases/download/v0.11/mklml_win_2018.0.1.20171007.zip).
Unzip it into your MKLML path, creating a versioned sub directory within.
Set the environment variable `MKLML_PATH` to the versioned sub directory, e.g. setx MKLML_PATH c:\local\mklml\mklml_win_2018.0.1.20171007

2017-10-10. Preview: CNTK ONNX Format Support Update CNTK to support load and save ONNX format from https://github.com/onnx/onnx, please try it and provide feedback. We only support ONNX OPs. This is a preview, and we expect a breaking change in the future.

  • Support loading a model saved in ONNX format.
  • Support saving a model in ONNX format, not all CNTK models are currently supported. Only a subset of CNTK models are supported and no RNN. We will add more in the future.

To load an ONNX model, simply specify the format parameter for the load function.

import cntk as C

C.Function.load(<path of your ONNX model>, format=C.ModelFormat.ONNX)

To save a CNTK graph as ONNX model, simply specify the format in the save function.

import cntk as C

x = C.input_variable(<input shape>)
z = create_model(x)
z.save(<path of where to save your ONNX model>, format=C.ModelFormat.ONNX)

If you want to try ONNX, you can build from master or pip install one of the below wheel that matches you Python environment.

For Windows CPU-Only:

For Windows GPU:

Linux CPU-Only:

Linux GPU:

2017-09-25. CNTK September interation plan posted here.

2017-09-24. CNTK R-binding now available here.

2017-09-15. CNTK 2.2
Release of Cognitive Toolkit v2.2.

Hightlights:

  • NCCL 2 support
  • New learner interface
  • A C#/.NET API that enables people to build and train networks
  • New C++ and C# eval examples
  • New nodes
  • Tensorboard image support for CNTK

See more in the Release Notes.   Get the Release from the CNTK Releases page.

2017-08-04. CNTK August interation plan posted here.

2017-07-31. CNTK 2.1
Release of Cognitive Toolkit v.2.1.

Highlights:

  • cuDNN 6.0 integration
  • Support of Universal Windows Platform (UWP)
  • Improvements in backend for Keras
  • Performance improvements
  • New manuals, tutorials and examples
  • Multiple bug fixes

See more in the Release Notes.
Get the Release from the CNTK Releases page.

See all news

Introduction

The Microsoft Cognitive Toolkit (https://cntk.ai), is a unified deep-learning toolkit that describes neural networks as a series of computational steps via a directed graph. In this directed graph, leaf nodes represent input values or network parameters, while other nodes represent matrix operations upon their inputs. CNTK allows to easily realize and combine popular model types such as feed-forward DNNs, convolutional nets (CNNs), and recurrent networks (RNNs/LSTMs). It implements stochastic gradient descent (SGD, error backpropagation) learning with automatic differentiation and parallelization across multiple GPUs and servers. CNTK has been available under an open-source license since April 2015. It is our hope that the community will take advantage of CNTK to share ideas more quickly through the exchange of open source working code.

Installation

Learning CNTK

You may learn more about CNTK with the following resources:

More information

Disclaimer

CNTK is in active use at Microsoft and constantly evolving. There will be bugs.

Microsoft Open Source Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.