• 2022-05-29
    执行下列程序段后,得到的结果是 。import tensorflow as tfimport numpy as npa = tf.constant(np.arange(48).reshape(3,2,4,2))b =tf.random.shuffle(a)c = tf.constant(np.arange(8).reshape(2,4))d =[email protected](d.sh
    A: (3, 2, 2, 2)
    B: (3, 2, 4, 4)
    C: (3, 4, 4, 2)
    D: (3, 4, 4)