Maxime
Maxime
I am unsure if it is parallel1.0 or mb/parallel, I think mb/parallel got almost merged and was an attempt to improve parallel1.0. You can read the discussion here: https://github.com/JuliaPOMDP/DiscreteValueIteration.jl/pull/18 The...
I think FFMPEG needs a flag when compiled to support svg: https://stackoverflow.com/questions/48216871/ffmpeg-support-for-svg-rasterization Here is the build recipe for FFMPEG.jl: https://github.com/JuliaPackaging/Yggdrasil/blob/master/F/FFMPEG/build_tarballs.jl#L69 the svg flag is not there. You could: - open...
Approach 1 seems more straightforward to me and more generic (apply to any distributions). I don't see how you control the number of particles in Approach 2? As you said,...
This is related to JuliaPOMDP/POMDPs.jl#226. Note that the function `insert_obs_node!` that is calling `actions` does not have access to a state nor the belief.
The commit history is a bit messed up, sorry about that
Thanks for recommending a bigger problem. - @rejuvyesh Regarding `SharedArray` on several nodes, I tried on a big cluster, using `--machinefile` when starting julia but the array did not get...
Actually, I found it pretty useful over the last few days to resume a solving process. Let say you have ran Value Iteration for some iterations, you can save the...
I have a deadline coming up this week, but I am happy to keep working on this after that.
I set up a small benchmark in [test/benchmark.jl](https://github.com/JuliaPOMDP/DiscreteValueIteration.jl/blob/mb/parallel/test/benchmark.jl) where I am testing 3 implementations (files are in src): - using shared array for the state space - not using shared...
Is there any chance that using [ParallelDataTransfer.jl](https://github.com/ChrisRackauckas/ParallelDataTransfer.jl) is better than SharedArrays to have the state space accessible from all workers? I am not sure how the memory is handled.