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, thanks for this awesome work! I would like to ask a simple question why did you choose to use a single learnable token and repeat it multiple times to represent the action instead of using different tokens? Assume we want to represent an action with 4 tokens, what is the difference between tokens = nn.Parameter(torch.zeros(token_num, self.hidden_size)) and tokens = nn.Parameter(torch.zeros(1, self.hidden_size)).repeat(token_num, 1) and is the corresponding advantage?
The text was updated successfully, but these errors were encountered:
Hi, thanks for this awesome work! I would like to ask a simple question why did you choose to use a single learnable token and repeat it multiple times to represent the action instead of using different tokens? Assume we want to represent an action with 4 tokens, what is the difference between tokens = nn.Parameter(torch.zeros(token_num, self.hidden_size)) and tokens = nn.Parameter(torch.zeros(1, self.hidden_size)).repeat(token_num, 1) and is the corresponding advantage?
The text was updated successfully, but these errors were encountered: