-
Notifications
You must be signed in to change notification settings - Fork 15
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
RL Experiments #216
RL Experiments #216
Conversation
} | ||
|
||
# Update defaults with provided kwargs | ||
self.set_params(**kwargs) |
Check warning
Code scanning / CodeQL
`__init__` method calls overridden method Warning
set_params
method MultiGNNClassifier.set_params
] | ||
last_hidden_dim = self.output_dim | ||
|
||
self.out_nn = nn.Sequential(nn.Linear(last_hidden_dim, self.output_dim), self.activation_func) |
Check failure
Code scanning / CodeQL
Potentially uninitialized local variable Error
These changes are not planned to get merged into the repo anytime soon. |
This is an experimental PR. It is used to document my progress on various RL-related experiments.
One idea is to incorporate graph neural networks into the RL framework.
Another way to improve the RL agent is by adjusting the input features or the reward strategy.