tf.assign(分配变量值) 2019-05-18 19:19 指令 评论 0 可以先创建变量,然后再如下所示地分配一个值(注意:您始终需要指定一个默认值): y = tf.Variable([0]) y = y.assign([5])
评论 (0)