Hi,
I'm trying to run your code in DVRL mode (according to the configurations you mention in the README file) and the results are significantly lower compared to the ones published in your paper (also, convergence is much slower).
Important note: I needed to modify your code because of a bug- you are doing a gradient step in the case of BPTT. This alters the weights while still backprop through the last iterations which yield an error.
In order to fix that I perform the gradient step (optimizer.step()) only when retain_graph=False.
In case this is the cause of the problem of low performance, what should I do?
Thanks
Hi,
I'm trying to run your code in DVRL mode (according to the configurations you mention in the README file) and the results are significantly lower compared to the ones published in your paper (also, convergence is much slower).
Important note: I needed to modify your code because of a bug- you are doing a gradient step in the case of BPTT. This alters the weights while still backprop through the last iterations which yield an error.
In order to fix that I perform the gradient step (optimizer.step()) only when retain_graph=False.
In case this is the cause of the problem of low performance, what should I do?
Thanks