Closed BenjaminMidtvedt closed 11 months ago
This PR fixes an issue where *args and **kwargs were added as keyword arguments args=..., kwargs=... during build. This caused the issue where
layer = dl.Layer(torch.nn.LSTM, 10, 20, 2) layer.build()
would throw an error complaining about an extra argument "args".
This PR fixes an issue where *args and **kwargs were added as keyword arguments args=..., kwargs=... during build. This caused the issue where
would throw an error complaining about an extra argument "args".