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

Convolutional VAE is not flexible to different image sizes. #36

Open
renan-siqueira opened this issue Oct 16, 2023 · 0 comments
Open

Convolutional VAE is not flexible to different image sizes. #36

renan-siqueira opened this issue Oct 16, 2023 · 0 comments
Labels
bug Something isn't working enhancement New feature or request good first issue Good for newcomers

Comments

@renan-siqueira
Copy link
Owner

Description:

Currently, the ConvolutionalVAE design is tailored to specifically handle images of size 64x64. Due to hardcoded dimensions in the dense (fully connected) layers, the model cannot easily adapt to different image sizes without manual modifications.

Steps to reproduce:

  1. Run the project with "conv_vae" type.
  2. Try to forward an image of a different size, e.g., 128x128 or 32x32, through the model.
  3. Observe the mismatch error or unexpected behavior due to fixed input-output sizes of certain layers, especially the dense layers related to the latent space.

Expected outcome:

The ConvolutionalVAE should ideally be as flexible as the ConvolutionalAutoencoder in handling any square image size.

Current outcome:

The ConvolutionalVAE can only handle images of size 64x64 without raising dimension-related errors or producing unexpected results.

@renan-siqueira renan-siqueira added bug Something isn't working enhancement New feature or request labels Oct 16, 2023
@renan-siqueira renan-siqueira added the good first issue Good for newcomers label Oct 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant