CNTK - A ML framework from Microsoft for large scale processing
CNTK is suppose to be a large scale corporate development of ML. You can call it via C#.
Similar to tensorflow, it is designed as a graph based ML development framework.
A couple of interesting things i find out
Installation CNTK
To install CNTK on Windows. If you're installing for different platform, you can refer to documentation here.
pip install https://cntk.ai/PythonWheel/CPU-Only/cntk-2.4-cp35-cp35m-win_amd64.whl
Get started
The best place to get started is following instruction here.
Using CNTK with C#
Yeap, you can use CNTK with C#.
Light RNN
https://github.com/Microsoft/CNTK/tree/master/Examples/Text/LightRNN
Tutorials
https://cntk.ai/pythondocs/CNTK_200_GuidedTour.html?highlight=cross_entropy_with_softmax
Docker image
You can find the docker image here.
docker pull microsoft/cntk
Comments