Search⌘ K

Quiz Yourself on Data Representations

Test your knowledge of voxels, point clouds, meshes, SDFs, and fields.

We'll cover the following...

Quiz

1.

(Select all that apply.) Which code snippets create a valid voxel grid? Multi-select

A.
grid = torch.full([n_batch, depth, height, width, 1], val)
B.
p = torch.linspace(0, 2 * torch.pi, 32)
C.
points = torch.randn([n_batch, 3])
D.
vol = Volumes(densities, features)

1 / 5