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
Currently the lowres inputs are passed directly to the prediction_fn as the only input.
prediction_fn
Modify to accept a dict that has at least one key for the lowres input.
lowres
Provide boolean flag to also pass a positional encoding tensor along with the lowres which the model can use if needed.
positional encoding
Chunked encode decode will need to generate the correct chunks of the positional encoding for the current chunk.
Model can choose how to use positional encodings.
(B, H, W, 2)
(B, D, H, W, 3)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the lowres inputs are passed directly to the
prediction_fn
as the only input.Modify to accept a dict that has at least one key for the
lowres
input.Provide boolean flag to also pass a
positional encoding
tensor along with thelowres
which the model can use if needed.Chunked encode decode will need to generate the correct chunks of the positional encoding for the current chunk.
Model can choose how to use positional encodings.
(B, H, W, 2)
tensor containing the Y and X coordinates of each pixel in the trailing axis.(B, D, H, W, 3)
tensor containing the Z, Y, and X coordinates of each voxel in the trailing axis.The text was updated successfully, but these errors were encountered: