Method: TensorStream::Ops#print
- Defined in:
- lib/tensor_stream/ops.rb
#print(input, data, message: nil, name: nil) ⇒ Object
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: , name: name) end |