I have:
arr_1 = tf.random_uniform([3],0.1,0.2)
arr_2 = tf.random_uniform([3],-0.1,0.1)
I am trying to create an arr_3 which has a size of 6 and alternates elements from arr_1 and arr_2. How should I go about this? Since tensors are read-only as such, I don't think I can index them and assign values the same way I would with numpy. Any solutions?
arr_3into tensor?