March 2018
Intermediate to advanced
484 pages
10h 31m
English
When thinking of executing a TensorFlow program, we should be familiar with the concepts of graph creation and session execution. Basically, the first one is for building the model, and the second one is for feeding the data in and getting the results.
Interestingly, TensorFlow does everything on the C++ engine, which means not even a little multiplication or addition is executed in Python. Python is just a wrapper. Fundamentally, the TensorFlow C++ engine consists of the following two things:
The TensorFlow lib is an extraordinary lib in terms of coding and it is not ...
Read now
Unlock full access