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
Hi,
I got a tip from the authors: Generated iamges converging to the intial image can be avoided by fewer PNN iterations on the first level.
That is, replacing the line
GPNN/model/gpnn.py
Line 94 in 2d7994b
with for j in range(1 if i == len(self.x_pyramid) - 1 else self.T):
for j in range(1 if i == len(self.x_pyramid) - 1 else self.T):
Thanks for a great implementation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I got a tip from the authors: Generated iamges converging to the intial image can be avoided by fewer PNN iterations on the first level.
That is, replacing the line
GPNN/model/gpnn.py
Line 94 in 2d7994b
with
for j in range(1 if i == len(self.x_pyramid) - 1 else self.T):
Thanks for a great implementation.
The text was updated successfully, but these errors were encountered: