TypeError: concat() got multiple values for argument 'axis'

前端 未结 1 2122
时光说笑
时光说笑 2021-02-15 10:58

This is my convolution neural net:

def convolutional_neural_network(frame):
    wts = {\'conv1\': tf.random_normal([5, 5, 3, 32]),
            \'conv2\': tf.rand         


        
1条回答
  •  一整个雨季
    2021-02-15 11:25

    Try

    conv2 = tf.concat((conv2, controls_at_each_frame), axis=1).

    Note I'm putting the two frames that you want to concatenate within parentheses, as specified here.

    0 讨论(0)
提交回复
热议问题