Skip to content
New issue

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

Why are the MLP parameters here so large? #7

Open
SanMumumu opened this issue May 17, 2024 · 0 comments
Open

Why are the MLP parameters here so large? #7

SanMumumu opened this issue May 17, 2024 · 0 comments

Comments

@SanMumumu
Copy link

SanMumumu commented May 17, 2024

Hi,

The role of MLP as I understand is used to decode the representation of encoder3d, function similar to decoder.

If the mlp parameter is too large, will it affect the learning of encoder3d and the robotic arm?

if coarse or self.mlp_fine is None:
mlp_output, prev_output = self.mlp_coarse(
mlp_input,
combine_inner_dims=(self.num_views_per_obj, B),
combine_index=combine_index,
dim_size=dim_size,
ret_last_feat=ret_last_feat,
language_embed=self.language,
batch_size=bs
)
else:
mlp_output, prev_output = self.mlp_fine(
mlp_input,
combine_inner_dims=(self.num_views_per_obj, B),
combine_index=combine_index,
dim_size=dim_size,
ret_last_feat=ret_last_feat,
language_embed=self.language,
batch_size=bs
)

mlp:
n_blocks: 5
d_hidden: 512
combine_layer: 3
combine_type: average
beta: 0.0
use_spade: False

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant