MCPcopy
hub / github.com/google/tf-quant-finance / concat

Method concat

tf_quant_finance/datetime/tensor_wrapper.py:59–63  ·  view source on GitHub ↗

See tf.concat.

(cls, tensor_wrappers, axis)

Source from the content-addressed store, hash-verified

57
58 @classmethod
59 def concat(cls, tensor_wrappers, axis):
60 """See tf.concat."""
61 cls._validate_tensor_types(tensor_wrappers, "concat")
62 return cls._apply_sequence_to_tensor_op(
63 lambda ts: tf.concat(ts, axis), tensor_wrappers)
64
65 @classmethod
66 def stack(cls, tensor_wrappers, axis=0):

Calls 2