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 @yang-song
I use the following code to test the BasicBlock, but I found the determinant is always 0. Is this normal? I am looking forward to your reply.
basic_model = BasicBlock( input_dim=3, latent_dim=32, kernel1=3, kernel2=3, kernel3=3, type='A', config=config, shape=[3, 32, 32], init_zero=False, ) x = torch.randn(1, 3, 32, 32) log_det = torch.zeros(1) out, log_det = basic_model([x, log_det]) print(log_det) Out: tensor([0.], grad_fn=<AddBackward0>)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @yang-song
I use the following code to test the BasicBlock, but I found the determinant is always 0. Is this normal? I am looking forward to your reply.
The text was updated successfully, but these errors were encountered: