You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please add an example of how to use explainability using InceptionTimePlus? I'm not able to figure our the error.
TypeError: conv1d() received an invalid combination of arguments - got (numpy.ndarray, Parameter, NoneType, tuple, tuple, tuple, int), but expected one of:
(Tensor input, Tensor weight, Tensor bias, tuple of ints stride, tuple of ints padding, tuple of ints dilation, int groups)
didn't match because some of the arguments have invalid types: (!numpy.ndarray!, !Parameter!, !NoneType!, !tuple!, !tuple!, !tuple!, int)
(Tensor input, Tensor weight, Tensor bias, tuple of ints stride, str padding, tuple of ints dilation, int groups)
didn't match because some of the arguments have invalid types: (!numpy.ndarray!, !Parameter!, !NoneType!, !tuple!, !tuple!, !tuple!, int)
The text was updated successfully, but these errors were encountered:
Is there an example Jupyter notebook that shows how to use these explainability functions - get_attribution_map() and get_acts_and_grads(), with InceptionTime model?
Also it would be great if there is a document that shows how to interpret the output from both the functions. Does that makes sense?
With InceptionTimePlus, you can call get_acts_and_grads with the module 'backbone' and will get the activations of that layer for any input x that you pass.
Could you please add an example of how to use explainability using InceptionTimePlus? I'm not able to figure our the error.
TypeError: conv1d() received an invalid combination of arguments - got (numpy.ndarray, Parameter, NoneType, tuple, tuple, tuple, int), but expected one of:
didn't match because some of the arguments have invalid types: (!numpy.ndarray!, !Parameter!, !NoneType!, !tuple!, !tuple!, !tuple!, int)
didn't match because some of the arguments have invalid types: (!numpy.ndarray!, !Parameter!, !NoneType!, !tuple!, !tuple!, !tuple!, int)
The text was updated successfully, but these errors were encountered: