Could you please explain the formula for Gradient-based Relevance Computation in more detail, I notice you have explained in your blog.
Part code:
z = self.layer.forward(a) + self.eps
s = (r / z).data
(z * s).sum().backward()
c = a.grad
r = (a * c).data
Part formula:

There are some questions:
- Why wij can represent by
, and the i' represents what.
2.sj is also an equation about a, sj is treated as a constant is not correct.
3.What is the relationship between zj(a; w) and
.
Could you please explain the formula for Gradient-based Relevance Computation in more detail, I notice you have explained in your blog.
Part code:
Part formula:

There are some questions:
2.sj is also an equation about a, sj is treated as a constant is not correct.
3.What is the relationship between zj(a; w) and