04 2022 档案

摘要:1 import tensorflow as tf 2 3 #设置参数w的随机初始值为5,设定为可训练(即vaiable形式?) 4 w = tf.Variable(tf.constant(5, dtype=tf.float32)) 5 #学习率 6 lr=0.2 7 #循环次数 8 epoch=4 阅读全文
posted @ 2022-04-24 22:31 怜雨慕 阅读(41) 评论(0) 推荐(0) 编辑