We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, in the module, in VQGanVAE class, self.resolution and self.channels are hard coded, whereas you could easily set them with
self.image_size = int(config.model.params.ddconfig.resolution) self.channels = int(config.model.params.ddconfig.in_channels)
Can you change that please ?
Best
The text was updated successfully, but these errors were encountered:
@rbazin Hi Romain, could you point me where in the code this is? you may have opened an issue in the wrong repository
Sorry, something went wrong.
Hello,
Sure, it's in DALLE-pytorch/dalle_pytorch/vae.py lines 190 and 191 in VQGanVAE class (resolution and image_size attributes)
Best regards
@rbazin ohh, those cannot be changed because we are using pretrained models from taming transformers out of Heidelberg
No branches or pull requests
Hello, in the module, in VQGanVAE class, self.resolution and self.channels are hard coded, whereas you could easily set them with
self.image_size = int(config.model.params.ddconfig.resolution)
self.channels = int(config.model.params.ddconfig.in_channels)
Can you change that please ?
Best
The text was updated successfully, but these errors were encountered: