Method: TensorStream::Ops#print

Defined in:
lib/tensor_stream/ops.rb

Prints a list of tensors.

This is an identity op (behaves like tf.identity) with the side effect of printing data when evaluating.



351
352
353
# File 'lib/tensor_stream/ops.rb', line 351

def print(input, data, message: nil, name: nil)
  _op(:print, input, data, message: message, name: name)
end