• 2022-05-28
    下面程序的执行结果是______。import tensorflow as tfimport numpy as npx = tf.Variable(np.random.randn(3, 1))print(x.dtype)
    A: float32
    B: float64
    C: int64
    D: int32