TensorFlow: Difference between revisions

210 bytes added ,  28 January 2021
Line 159: Line 159:


==Usage (TF1)==
==Usage (TF1)==
In TF1, you first build a computational graph by chaining commands with placeholder. 
Then, you execute the graph in a tf session.
<syntaxhighlight lang="python">
import tensorflow as tf
</syntaxhighlight>


==Estimators==
==Estimators==