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

Method reshape

tf_quant_finance/datetime/tensor_wrapper.py:92–94  ·  view source on GitHub ↗

See tf.reshape.

(self, shape)

Source from the content-addressed store, hash-verified

90 return self._apply_op(lambda t: tf.expand_dims(t, axis))
91
92 def reshape(self, shape):
93 """See tf.reshape."""
94 return self._apply_op(lambda t: tf.reshape(t, shape))
95
96 def identity(self):
97 """See tf.identity."""

Callers 15

random_datesFunction · 0.80
_milstein_stepFunction · 0.80
test_sample_paths_2dMethod · 0.80
drift_fnMethod · 0.80
vol_fnMethod · 0.80
test_times_grid_longMethod · 0.80
test_sample_paths_1dMethod · 0.80

Calls 1

_apply_opMethod · 0.95