Skip to content
Advertisement

How to append rank 1 tensors using only tensorflow operations?

Say I have two rank 1 tensors of different (important) length:

JavaScript

Now I want to append y to the end of x to give me the tensor:

JavaScript

But I can’t seem to figure out how.

I will be doing this inside a function that I will decorate with tf.function, and it is my understanding that everything needs to be tensorflow operations for the tf.function decorator to work. That is, converting x and y to numpy arrays and back to a tensor will cause problems.

Thanks!

EDIT:

The solution is to use tf.concat() as pointed out by @Andrey:

JavaScript

It turns out that the problem originated when trying to append a single number to the end of a rank 1 tensor as follows:

JavaScript

which fails since here y is a rank 0 tensor of shape (). This can be solved by writing:

JavaScript

since y will then be a rank 1 tensor of shape (1,).

Advertisement

Answer

Use tf.concat():

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement