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
In the code of the BaseDeepQ class the attribute optimizer_model is private, whereas it is incorrectly used in the class DeepQAgent (accessed through optimizer_model)
In the code of the
BaseDeepQ
class the attributeoptimizer_model
is private, whereas it is incorrectly used in the classDeepQAgent
(accessed throughoptimizer_model
)To fix this issue, just update this line https://github.com/rte-france/l2rpn-baselines/blob/master/l2rpn_baselines/utils/DeepQAgent.py#L591
with:
Also this entails that the tests do not attempt to train the baselines at all. This would be nice to fix them.
The text was updated successfully, but these errors were encountered: