Tensorflow Variables and Operations


A Tensorflow operation (a.k.a. op) can take any number of inputs and produce any number of outputs.
  • Addition and multiplication ops take two inputs and produce one output.
  • Constants and variables take no input. They are called source ops.
  • Tensors: The inputs and outputs to tensorflow ops are called tensors (multidimensional arrays). They have a type and shape.

  • Q. Tensors can contain,