October 2017
Intermediate to advanced
330 pages
7h 7m
English
pip install https://cntk.ai/PythonWheel/GPU/cntk-2.2-cp35-cp35m-linux_x86_64.whl
Adjust the wheel file if necessary (see https://docs.microsoft.com/en-us/cognitive-toolkit/Setup-Linux-Python?tabs=cntkpy22).
import cntk
import numpy as npx_input = np.array([[1,2,3,4,5]], np.float32)y_input = np.array([[10]], np.float32)
X = cntk.input_variable(5, np.float32)y = cntk.input_variable(1, np.float32)
Read now
Unlock full access