-
Notifications
You must be signed in to change notification settings - Fork 4
pruning #22
Comments
It's been a while since I looked at pruning last. It wasn't quite working properly, but I don't remember why now. It was not all that important to me at that point, so I did not spend much time debugging. Feel free to tinker with the code if you'd like. |
I am working on this today |
It doesn't look like the regularization (which I think is the same as pruning) mattered too much for the RockSample problems, but it does seem to be important for laser tag. I'm assuming that you don't have very much time to work on implementing it right now, right @ebalaban? The fastest way forward is for me to learn the details and implement it myself I guess. |
When you were implementing DESPOT.jl in the first place, did you mostly look at their C++ source code or their papers for guidance? |
I started with their original 2013 paper for the overall algorithm layout, then consulted with the C++ code when I needed some specific implementation ideas. |
I could get to fixing pruning, but probably not for a week or so - a little swamped right now. If you need it working sooner, yes, please feel free to give it a try. |
@ebalaban , not sure if you were still thinking about doing this. I am currently considering making a new implementation that follows the pseudocode in appendix B of this paper: https://www.jair.org/media/5328/live-5328-9753-jair.ps . They note in footnote 2 on p.241 that this algorithm is slightly different than the one from their 2013 paper. Given the good experience I had re-implementing POMCP, I think that this will produce a better outcome than putting the pruning into the current DESPOT.jl implementation. Do you have any comments/advice about doing that? I am still trying to decide on a course of action. |
Have not gotten to this yet. If they do have a newer version of pruning, perhaps it'be worth the effort to implement that for DESPOT instead of debugging the old one. Will try to look through the latest paper tomorrow and see what the differences are. If you are going to do it for POMCP, I may then implement it for DESPOT when I get some cycles. |
I meant that I am implementing a completely new DESPOT package, not a new POMCP. The main advantage of the new implementation is that it follows the pseudocode in the JAIR paper closely, so it should be much easier to understand after reading the paper. I have already implemented some of it here: https://github.com/zsunberg/ARDESPOT.jl/blob/master/src/planner.jl |
Hi @ebalaban, do you remember anything about the status of pruning? Right now the
prune
functions are commented out with#TODO: fix pruning
at the top. Do you remember anything about what needed to be fixed? It's ok if not; I just didn't want to jump in and start debugging it if you had a more specific idea of what needs to be fixed.Thanks!
The text was updated successfully, but these errors were encountered: