January 2018
Beginner to intermediate
284 pages
8h 35m
English
MXNet is a multi-language machine learning library. It offers two modes of computation:
import mxnet as mx tensor_cpu = mx.nd.zeros((100,), ctx=mx.cpu()) tensor_gpu = mx.nd.zeros((100,), ctx=mx.gpu(0))
In the example earlier, MXNet specifies the location where to hold the tensor either in CPU or in a GPU device at location 0. One important distinction with MXNet is that all computations happen lazily instead of instantaneously. This allows MXNet to achieve incredible utilization of the device, unlike any other framework.
Read now
Unlock full access