Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1D Transposed Convolutional Layer #854

Open
lars-reimann opened this issue Jun 21, 2024 · 0 comments
Open

1D Transposed Convolutional Layer #854

lars-reimann opened this issue Jun 21, 2024 · 0 comments
Labels
enhancement 💡 New feature or request

Comments

@lars-reimann
Copy link
Member

lars-reimann commented Jun 21, 2024

Is your feature request related to a problem?

We only have 2D transposed convolutions so far. 1D transposed convolutions can also be useful, e.g. for time series.

Desired solution

  • Add a new class safeds.ml.nn.layers.ConvolutionalTranspose1DLayer.
  • Superclass: Convolutional1DLayer (see 1D Convolutional Layer #853)
  • Constructor parameters:
    • output_channel: int
    • kernel_size: int
    • keyword-only stride: int = 1
    • keyword-only padding: int = 0
    • keyword-only output_padding: int = 0
    • Call _check_bounds to ensure that:
      • output_channel >= 1
      • kernel_size >= 1
      • stride >= 1
      • padding >= 0
      • output_padding >= 0
  • Implementation:

Possible alternatives (optional)

No response

Screenshots (optional)

No response

Additional Context (optional)

No response

@lars-reimann lars-reimann added enhancement 💡 New feature or request lab Suitable for the lab labels Jun 21, 2024
@zogomii zogomii added the team2 label Jun 28, 2024
@lars-reimann lars-reimann removed lab Suitable for the lab team2 labels Jul 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement 💡 New feature or request
Projects
Status: Backlog
Development

No branches or pull requests

2 participants