rz wu
Results
1
issues of
rz wu
In the following lines, the computation of `weight` multiplies `y_true` one more time. ```Python ce = tf.multiply(y_true, -tf.log(model_out)) weight = tf.multiply(y_true, tf.pow(tf.subtract(1., model_out), gamma)) ``` I find that in current...