本文介绍了如何使用 tensorflow 比较两个数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
I need to compare two arrays and get either true or false,not elementwise result. My code is
X = tf.constant([0.05, 0.10], dtype=tf.float32, shape=[1, 2])
y = tf.constant([0.01, 0.99], dtype=tf.float32, shape=[1, 2])
equality = tf.equal(X, y)
prints [False, False]
my requirement is to get true or false, not an array.
解决方案
Assuming that you want to return False
if any of your values are not equal then you can use the reduce_all operation:
equality = tf.math.reduce_all(tf.equal(X, y))
这篇关于如何使用 tensorflow 比较两个数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!