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,
The documentation of tfg.image.pyramid.downsample states it to return "A list containing num_levels tensors" but it actually returns a list containing num_levels+1 tensors
num_levels
num_levels+1
import tensorflow as tf import tensorflow_graphics as tfg x = tf.zeros((1,64,64,1)) pyramid = tfg.image.pyramid.downsample(x, num_levels=3) print(len(pyramid)) 4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The documentation of tfg.image.pyramid.downsample states it to return "A list containing
num_levels
tensors" but it actually returns a list containingnum_levels+1
tensorsThe text was updated successfully, but these errors were encountered: