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
AveragePooling2DLayer has an optional parameter stride. However, the generated stubs omit the default value and instead include a TODO:
// TODO Safe-DS does not support required but name only parameter assignments.
class AveragePooling2DLayer(
@PythonName("kernel_size") kernelSize: Int,
stride: Int,
padding: Int = 0
) sub _Pooling2DLayer
Seems like it breaks because of the superclass.
To Reproduce
Generate stubs for safe-ds.
Expected behavior
No TODO.
The default value should be included.
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered:
Closes#136
### Summary of Changes
Fixed a bug where negative parameter values couldn't be parsed and would
thus be ignored.
---------
Co-authored-by: megalinter-bot <129584137+megalinter-bot@users.noreply.github.com>
Co-authored-by: Lars Reimann <mail@larsreimann.com>
Describe the bug
AveragePooling2DLayer
has an optional parameterstride
. However, the generated stubs omit the default value and instead include a TODO:Seems like it breaks because of the superclass.
To Reproduce
Generate stubs for
safe-ds
.Expected behavior
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: