You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @seasonSH, could you provide some insight about the architecture of the 2-layer MLP for the camera matrix embedding? I'm guessing that it looks something like the below code, but if you could please correct me that would be great.
importtorchimporttorch.nnasnn# 2-layer MLPcamera_embedding=nn.Sequential(
nn.Linear(4*4, 512),
nn.SiLU(),
nn.Linear(512, time_embed_dim),
nn.LayerNorm(time_embed_dim)
)
# embed the 4x4 camera matrixcamera_embed=camera_embedding(camera)
# add result to time embeddingtime_embed=time_embed+camera_embed
The text was updated successfully, but these errors were encountered:
Hi @seasonSH, could you provide some insight about the architecture of the 2-layer MLP for the camera matrix embedding? I'm guessing that it looks something like the below code, but if you could please correct me that would be great.
The text was updated successfully, but these errors were encountered: