Posted in Python onJune 30, 2020
我就废话不多说了,大家还是直接看代码吧~
one = tf.ones_like(label) zero = tf.zeros_like(label) label = tf.where(label <0.5, x=zero, y=one)
补充知识:TensorFlow中获取大于零的元素集合
a为tensor
idx = tf.where(a > 0)
output = tf.gather_nd(a, idx)
以上这篇tensorflow 大于某个值为1,小于为0的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
tensorflow 大于某个值为1,小于为0的实例
- Author -
Xxy_声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@