We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0347299 commit fa5d19dCopy full SHA for fa5d19d
src/TensorFlowNET.Core/APIs/tf.tile.cs
@@ -23,7 +23,7 @@ public Tensor tile(Tensor input, Tensor multiples, string name = null)
23
=> gen_array_ops.tile(input, multiples, name);
24
25
public Tensor tile(Tensor input, object[] multiples, string name = null)
26
- => array_ops.tile(input, multiples, name);
+ => array_ops.tile(input, constant_op.constant(shape_utils.from_object_array(multiples).dims), name);
27
28
public Tensor tile(Tensor input, Shape multiples, string name = null)
29
{
0 commit comments