InterviewSolution
Saved Bookmarks
| 1. |
What is a computational graph? |
|
Answer» A computational GRAPH is also known as a “Dataflow Graph”. Everything in the famous deep learning LIBRARY TensorFlow is based on the computational graph. The computational graph in Tensorflow has a network of nodes where each node operates. The nodes of this graph represent OPERATIONS and the edges represent TENSORS. |
|