- constants (no inputs, outputs a value it stores internally)
tf.constant(3.0)
- operations (inputs to outputs)
tf.add(node1, node2)
ornode1 + node2
- (Variables and placeholders are operations too. For variables, an 'assign' op might also be created for assigning the initial value)
3 # a rank 0 tensor; this is a scalar with shape []