May 2018
Beginner
490 pages
13h 16m
English
As explained previously, the results appear in the Amazon S3 bucket. In this case, a TAR file was created as shown in the following screenshot.

The TAR file contains model_algo-1, a data-serialized file.
To read the file, mxnet can be imported, the file opened, and the result displayed in a short read.py program, as shown in this code.
import mxnet as mxr=mx.ndarray.load('model_algo-1')print(r)
The following result comes close to the local model.
[[ 23.70976257 16.17502213][ 97.42507935 81.57003784][ 58.39919281 45.75806427][ 29.69905663 65.11740875][ 61.08079529 81.22251892][ 56.15731812 12.13902283]]<NDArray ...
Read now
Unlock full access