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
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:
Run the project with "conv_vae" type.
Try to forward an image of a different size, e.g., 128x128 or 32x32, through the model.
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.
The text was updated successfully, but these errors were encountered:
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:
Expected outcome:
The
ConvolutionalVAE
should ideally be as flexible as theConvolutionalAutoencoder
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.The text was updated successfully, but these errors were encountered: