Code Monkey home page Code Monkey logo

Comments (5)

dgriff777 avatar dgriff777 commented on May 17, 2024

Hi! So this is a stateful lstm implementation so the cell state is kept and sent forward through time. So the cell state at step 20 is input for the lstmcell at step 21. What is done here:

self.cx = Variable(self.cx.data)
self.hx = Variable(self.hx.data)

The hx, cx output of lstmcell the Variables are volatile and cannot be bppt so we create new Variables for the underlying data in hx, cx Variables and now they can be ready to bppt for next update.

from rl_a3c_pytorch.

yiwan-rl avatar yiwan-rl commented on May 17, 2024

Hi, thanks for your replay. Your action_train function is executed for every training step. And self.done is always False until the env resets. So you are actually setting

self.cx = Variable(self.cx.data)
self.hx = Variable(self.hx.data)

nearly every time step.
Now self.cx and self.hx are new Variables and gradients will not be passed through.

If you check the project you reference, https://github.com/ikostrikov/pytorch-a3c, it doesn't have such problem because it sets

self.cx = Variable(self.cx.data)
self.hx = Variable(self.hx.data)

every args.num_steps, instead of every step.

from rl_a3c_pytorch.

dgriff777 avatar dgriff777 commented on May 17, 2024

hmm your right it looks like I changed something here. I'll take a look in a little bit but very busy at the moment

from rl_a3c_pytorch.

yiwan-rl avatar yiwan-rl commented on May 17, 2024

Oh, I don't think it's the problem of GPU/CPU.

self.cx = Variable(self.cx.data)
self.hx = Variable(self.hx.data)

is ok for both GPU and CPU.

The problem is you don't want to put these two lines in the "else" condition. This will make this two lines execute every time step, except episode terminates (self.done = True).

What you want to do is to execute these 2 lines every args.num_steps (in your setting, args.num_steps = 20).

from rl_a3c_pytorch.

dgriff777 avatar dgriff777 commented on May 17, 2024

its fixed now should be fine now thanks!

Wow thanks for spotting had not noticed this error in repo. My version is not linked to GitHub and just been checking using trained models. And test part was fine lol. Good spot! For clarity all final performance of models posted were not trained with this bug in code. Thanks again!

from rl_a3c_pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.