Hi, is there a way to use a scheduler to change the learning rate for training DQN without using tune? Currently, the learning rate is constant throughout! Any tutorial links or resources would be great!
Hello @mannyv , is it possible to see the change of lr in the metrics? I have an issue with the lr schedule and I’m trying to see if its really changing
you can find something about this for example here. Most agents in RLlib are inherited from Trainer and you can build a Trainer that uses a learning rate schedule by including the mixin LearningRateSchedule. Than you can use such a behavior as shown above by @mannyv .