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
First of all, thank you for developing this great project!
I found an event that failed in the convolution conversion when its padding argument is 'valid'(nn.Conv) or default(F.conv).
UserWarning: Conversion exception on node 'Conv1d': The `padding` argument must be a tuple of 2 integers. Received: v
raise Exception(f'Failed conversion: {self.original_node}')
Exception: Failed conversion: Conv1d(128, 128, kernel_size=(1,), stride=(1,), padding=valid)
UserWarning: Validation exception on node 'conv1d': Failed conversion: <built-in method conv1d of type object at 0x105101780>
Exception: Failed conversion: <built-in method conv1d of type object at 0x122109780>
ValueError: `padding` should have two elements. Received: valid.
raise Exception(f'Failed conversion: {self.original_node}')
Exception: Failed conversion: Conv2d(128, 128, kernel_size=(1, 1), stride=(1, 1), padding=valid)
UserWarning: Validation exception on node 'ErrorModel': Failed conversion: <built-in method conv2d of type object at 0x122101980>
Exception: Failed conversion: <built-in method conv2d of type object at 0x122101510>
First of all, thank you for developing this great project!
I found an event that failed in the convolution conversion when its padding argument is 'valid'(
nn.Conv
) or default(F.conv
).The code to be reproduced is as follows:
The text was updated successfully, but these errors were encountered: