What is PyTorch's dynamic computational graph and how does it differ from TensorFlow 1.x's static graph?
-
A
PyTorch builds the graph incrementally during execution; TensorFlow 1.x required defining the full graph before running
-
B
PyTorch uses less memory; TensorFlow is faster at inference
-
C
PyTorch only supports CPU; TensorFlow supports GPU
-
D
PyTorch uses symbolic differentiation; TensorFlow uses numerical