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
Thank you for your work! I'm confused about why self.embedding_list[0] has an input dimension of 225 and why the weights are not updated.
self.embedding_list[0]
In rl_search.py,
rl_search.py
def _stable_first_embedding(self): target = self.embedding_list[0] # (0): Embedding(225, 30) for param in target.parameters(): param.requires_grad = False
Could you explain the rationale behind this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for your work! I'm confused about why
self.embedding_list[0]
has an input dimension of 225 and why the weights are not updated.In
rl_search.py
,Could you explain the rationale behind this?
The text was updated successfully, but these errors were encountered: