TensorFlow is open source library by Google for Deep Learning and a Tensor is a multi-dimensional data node having the following three parts: Name Shape Data type Tensor(“Const:0”, shape=(), dtype=string) TensorFlow Hello World example: First use the following command to install TensorFlow on Windows: pip3 install –upgrade tensorflow import tensorflow as tf hello = tf.constant(‘Hello World’) print(hello) If you execute the above program, the text will not […]
