Sam Coope
Sam Coope
As the title suggests, I cannot find a way of doing this. There does not seem to be a way of currying a divide function with the sum of a...
What the title says - I would love to be able to pad a sequence of tensors with some zero tensors of equivalent shape. This would help with building 'look-behind'...
The example: ``` c = td.Composition() with c.scope(): x = td.Vector(3).reads(c.input) x_squared = td.Function(tf.mul).reads(x, x) ten = td.FromTensor(10 * np.ones(3, dtype='float32')) ten_x = td.Function(tf.mul).reads(ten, x) c.output.reads(td.Function(tf.add).reads(x_squared, ten_x) ``` does not...