Open dfldylan opened 2 years ago
Hey @dfldylan, This error message is indicating that TensorFlow's gradient registry does not have a registered gradient function for the Open3DReduceSubarraysSum operation, which means that TensorFlow cannot automatically compute the gradient of this operation during the backpropagation phase of training.
I have two approaches, you can try one of the following:
Implement a custom gradient function for Open3DReduceSubarraysSum and register it in TensorFlow's gradient registry.
If you don't need the gradient of Open3DReduceSubarraysSum during training, you can wrap this operation with tf.stop_gradient to prevent TensorFlow from trying to compute its gradient.
Checklist
master
branch).My Question
When I use ops.Open3DReduceSubarraysSum in my tensorflow project, I got a error "LookupError: gradient registry has no entry for: Open3DReduceSubarraysSum", What should I do?