You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
年龄值和对应的概率值相乘再求和是什么意思
age_ = tf.cast(tf.constant([i for i in range(0, 101)]), tf.float32)
age = tf.reduce_sum(tf.multiply(tf.nn.softmax(age_logits), age_), axis=1)
为什么不能用argmax求最大可能性的年龄
The text was updated successfully, but these errors were encountered:
年龄值和对应的概率值相乘再求和是什么意思
age_ = tf.cast(tf.constant([i for i in range(0, 101)]), tf.float32)
age = tf.reduce_sum(tf.multiply(tf.nn.softmax(age_logits), age_), axis=1)
为什么不能用argmax求最大可能性的年龄
The text was updated successfully, but these errors were encountered: