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
I found the backflow of real NVP cannot reconstruct the original input data. This is caused by a bug in code when the dimension is more than 2:
pytorch-normalizing-flows/nflib/flows.py
Line 108 in b60e119
Line 122 in b60e119
They should be:
x0, x1 = x[:, :self.half_dim], x[:, self.half_dim:] z0, z1 = z[:, :self.half_dim], z[:, self.half_dim:]
The text was updated successfully, but these errors were encountered:
See #1.
Sorry, something went wrong.
No branches or pull requests
I found the backflow of real NVP cannot reconstruct the original input data. This is caused by a bug in code when the dimension is more than 2:
pytorch-normalizing-flows/nflib/flows.py
Line 108 in b60e119
pytorch-normalizing-flows/nflib/flows.py
Line 122 in b60e119
They should be:
x0, x1 = x[:, :self.half_dim], x[:, self.half_dim:]
z0, z1 = z[:, :self.half_dim], z[:, self.half_dim:]
The text was updated successfully, but these errors were encountered: