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
Bug
source
nightly
No response
MCT builds the quantized model incorrectly. The quantized model output shape is different between original and quantized models.
class Model(nn.Module): def __init__(self): super().__init__() self.downsample = nn.Conv2d(3, 16, 3, stride=2, padding=1) self.upsample = nn.ConvTranspose2d(16, 16, 3, stride=2, padding=1) def forward(self, x): return self.upsample(self.downsample(x), [8, 8]) # float model output shape: [B, 16, 8, 8] # Quantized model output shape: [B, 16, 7, 7]
The text was updated successfully, but these errors were encountered:
Stale issue message
Sorry, something went wrong.
No branches or pull requests
Issue Type
Bug
Source
source
MCT Version
nightly
OS Platform and Distribution
No response
Python version
No response
Describe the issue
Expected behaviour
No response
Code to reproduce the issue
Log output
No response
The text was updated successfully, but these errors were encountered: