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 use the following code to render a mesh from one view:
mesh.textures = TexturesUV( maps=init_texture.unsqueeze(0).to(device), # / 255 faces_uvs=faces.textures_idx[None, ...], verts_uvs=verts_uvs[None, ...]) renderer = init_renderer(cameras, shader=init_soft_phong_shader( camera=cameras, blend_params=BlendParams(), device=device), image_size=image_size*2, faces_per_pixel=faces_per_pixel ) images, fragments = renderer(mesh)
And the images.requires_grad=False, how should I deal with it?
The text was updated successfully, but these errors were encountered:
Which inputs here require grad? You might need to share more code.
Sorry, something went wrong.
No branches or pull requests
I use the following code to render a mesh from one view:
And the images.requires_grad=False, how should I deal with it?
The text was updated successfully, but these errors were encountered: