TensorFlow_Center_Loss icon indicating copy to clipboard operation
TensorFlow_Center_Loss copied to clipboard

Center Loss implementation with TensorFlow

Results 3 TensorFlow_Center_Loss issues
Sort by recently updated
recently updated
newest added

whats the difference between training trainable centers jointly with major losses and update untrainable centers independently? ? I think, in joint way, the trainable centers will be updated as the...

1. diff = diff / tf.cast((1 + appear_times), tf.float32) 2. diff = alpha * diff 3. centers_update_op = tf.scatter_sub(centers, labels, diff) 您好,有个疑问,第一行代码,根据论文中给的公式应该是 diff = (diff * appear_times)/ tf.cast((1 + appear_times),...

InvalidArgumentError (see above for traceback): Reshape cannot infer the missing input size for an empty tensor unless all specified input sizes are non-zero [[node flatten/flatten/Reshape (defined at center_main+model.py:80) ]] [[node...