Microsoft Cognitive Toolkit (CNTK), an open source deep-learning toolkit
Перейти к файлу
frankseide b78cd1383f switched LSTM E2E test config to use TransposeTimes() for criteria 2016-05-05 15:05:14 -07:00
Documentation fix CTNK --> CNTK, hierarchal --> hierarchical 2016-04-26 16:12:14 -07:00
Examples deleted some unused code from seq-2-seq sample 2016-05-03 18:56:09 -07:00
Source switched LSTM E2E test config to use TransposeTimes() for criteria 2016-05-05 15:05:14 -07:00
Tests switched LSTM E2E test config to use TransposeTimes() for criteria 2016-05-05 15:05:14 -07:00
Tools merged with master 2016-05-02 15:35:52 -07:00
contrib Changing to the cross_entropy_with_max 2016-04-28 02:56:04 -07:00
.clang-format Re-format code using clang-format (plus some post-processing) 2016-01-18 09:36:14 +01:00
.gitattributes This commits adds .rst extensions as text files. This prevents these files from showing up as modified in Visual Studio 2016-04-20 08:50:01 +02:00
.gitignore Add DynamicAxis, and enable it for Input/SparseInput nodes 2016-04-10 08:28:51 +02:00
.gitmodules Update location for Source/1BitSGD 2016-01-23 07:23:12 +01:00
CNTK.Cpp.props .vcxproj: start sharing settings, starting with static libraries 2016-04-26 17:02:01 +02:00
CNTK.sln moved seq-2-seq config to its own Examples folder 2016-05-03 10:08:42 -07:00
CONTRIBUTING.md Added CONTRIBUTING.md to the root directory 2016-02-17 13:14:44 +01:00
CppCntk.vssettings Update CppCntk.vssettings (wolfma) 2016-01-22 10:08:52 +01:00
LICENSE.md License change 2016-01-18 09:36:17 +01:00
Makefile Merge branch 'master' of https://github.com/Microsoft/CNTK into erw/bm_rc 2016-05-02 11:57:31 -07:00
README.md Fixed link in ReadMe 2016-04-25 18:16:36 +02:00
configure Add support for gcov code coverage builds 2016-05-02 09:48:46 -07:00

README.md

CNTK

Latest news

2016-04-25. V 1.1 Binary release CNTK v.1.1 binaries are on the CNTK Releases page

2016-04-12. CNTK is available as Azure Virtual Machines and Docker Containers

2016-04-12. Added support for ND convolution and ND pooling and CPU support for cudnn layout in convolution, pooling and batch normalization nodes. Read documentation on convolution, pooling and batch normalization nodes.

2016-04-05. CUDA7.5 support for Windows Build: Windows project files have been updated to automatically utilize CUDA 7.5 if present

See all news.

What is CNTK

CNTK (http://www.cntk.ai/), the Computational Network Toolkit by Microsoft Research, 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.

Wiki: Go to the CNTK Wiki for all information on CNTK including setup, examples, etc.

License: See LICENSE.md in the root of this repository for the full license information.

Tutorial: Microsoft Computational Network Toolkit (CNTK) @ NIPS 2015 Workshops

Blogs:

Performance

The figure below compares processing speed (frames processed per second) of CNTK to that of four other well-known toolkits. The configuration uses a fully connected 4-layer neural network (see our benchmark scripts) and an effective mini batch size (8192). All results were obtained on the same hardware with the respective latest public software versions as of Dec 3, 2015.

Performance chart

Citation

If you used this toolkit or part of it to do your research, please cite the work as:

Amit Agarwal, Eldar Akchurin, Chris Basoglu, Guoguo Chen, Scott Cyphers, Jasha Droppo, Adam Eversole, Brian Guenter, Mark Hillebrand, T. Ryan Hoens, Xuedong Huang, Zhiheng Huang, Vladimir Ivanov, Alexey Kamenev, Philipp Kranen, Oleksii Kuchaiev, Wolfgang Manousek, Avner May, Bhaskar Mitra, Olivier Nano, Gaizka Navarro, Alexey Orlov, Hari Parthasarathi, Baolin Peng, Marko Radmilac, Alexey Reznichenko, Frank Seide, Michael L. Seltzer, Malcolm Slaney, Andreas Stolcke, Huaming Wang, Yongqiang Wang, Kaisheng Yao, Dong Yu, Yu Zhang, Geoffrey Zweig (in alphabetical order), "An Introduction to Computational Networks and the Computational Network Toolkit", Microsoft Technical Report MSR-TR-2014-112, 2014.

Disclaimer

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