Hi,
I meet two problems when training the readout network.
|
return self._do_restrict_information(x, alpha) |
does not work now, since
|
def _do_restrict_information(self, x): |
accepts one argument now.
(Currently, I checkout to the previous commit)
|
alpha.clamp(-self._alpha_bound, self._alpha_bound) |
should be
alpha = alpha.clamp(....
(The alpha become -infinite)
Could you check the current code can train the readout network?
Thanks!
Hi,
I meet two problems when training the readout network.
IBA/IBA/pytorch_readout.py
Line 128 in 34baed6
does not work now, since
IBA/IBA/pytorch.py
Line 412 in 34baed6
accepts one argument now.
(Currently, I checkout to the previous commit)
IBA/IBA/pytorch_readout.py
Line 170 in 34baed6
should be
alpha = alpha.clamp(....(The alpha become -infinite)
Could you check the current code can train the readout network?
Thanks!