当前位置:网站首页>tf中自减操作;tf.assign_sub()

tf中自减操作;tf.assign_sub()

2022-08-11 06:45:00 phac123

简介

  • 赋值操作,更新参数的值并返回。
  • 调用assign_sub前,先用 tf.Variable 定义变量 w 为可训练(可自更新)。

代码

import tensorflow as tf

x = tf.Variable(4.7)
x.assign_sub(1)
print("x:", x)
x = tf.Variable(tf.constant(6))
x.assign_sub(1)
print(x)

在这里插入图片描述

原网站

版权声明
本文为[phac123]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_42596275/article/details/126259933