Joel Mason
Joel Mason
I now have gym running as fast in Julia as in Python. PRs forthcoming here once JuliaPy/PyCall.jl#487 and a version of JuliaPy/PyCall.jl#486 get merged.
@karajan9 see #13
My situation is similar, I also have `"julia.usePlotPane": false` in my settings.json. When I connect an external REPL and show a PlotlyJS.jl plot, it shows in the plotpane (not what...
In OpenMPI I just discovered (via `mpirun --help output`) this `-xterm` option which opens xterm windows for each specified rank, i.e. `mpirun -xterm 0,1 -np 2 julia --project` opens two...
Killer! thank you 🎉
Maybe `init_rng!(params)` should be called in `bbsetup`? Populations get initialized there (which use the PRNG), i.e. seems it should be called before `optimizer = optimizer_func(problem, params)` [here](https://github.com/robertfeldt/BlackBoxOptim.jl/blob/37d1317a62e0a4bc4053b89599f2323c44ae036b/src/bboptimize.jl#L103)
Just if you wanted the same seed to produce the same result, for reproducibility. This is what I assumed would happen if I called `bbsetup(f; ..., RandomizeRngSeed=false, RngSeed=42)` that I'd...
I guess my thinking is: what's the point of providing a RngSeed if it doesn't lead to reproducible results?
Yeah I think that makes sense to remove all the RNG seeding stuff completely. ________________________________ From: Robert Feldt ***@***.***> Sent: Thursday, December 21, 2023 12:11:11 AM To: robertfeldt/BlackBoxOptim.jl ***@***.***> Cc:...