Is there an easy native way to implement tfa.optimizers.CyclicalLearningRate w/ QNetwork on DqnAgent?
Trying to avoid writing my own DqnAgent.
I guess the better question might be, what is a proper way to implement callbacks on DqnAgent?
Is there an easy native way to implement tfa.optimizers.CyclicalLearningRate w/ QNetwork on DqnAgent?
Trying to avoid writing my own DqnAgent.
I guess the better question might be, what is a proper way to implement callbacks on DqnAgent?
Copyright © 2021 Jogjafile Inc.
From the tutorial you linked, the part where they set the optimizer is
So you can replace optimizer with whatever optimizer you would rather use. Based on the documentation something like
should work, barring any potential compatibility issues coming from that they are using the tf 1.0 adam in the tutorial.