Zachary-Fernandes

Results 8 comments of Zachary-Fernandes

Thank you for the reply! Will these methods work with `all_plots.py` as well? I just wanted to make sure for plotting training and evaluation. Also, how would one manually offset...

I tried looking through the [plotting code](https://github.com/DLR-RM/rl-baselines3-zoo/blob/master/rl_zoo3/plots/all_plots.py) where the npz files were used. I never used npz files before, but based on what I looked up, it appears `evaluations.npz` is...

Yes. I will admit this is a work in progress as I still need to implement npy merging. This was also made for the project I am working on, which...

Thank you. I tried this and was curious why it would not print the keys, but I found a [Stack Overflow post](https://stackoverflow.com/questions/55014142/i-cannot-see-any-keys-returned-when-i-did-np-loadfilename-npz-then-keys) that stated `.keys()` returned an iterable. With a...

Following up to this thread, I have a question regarding saving checkpoints in rl-baselines3-zoo. Say I want to train an agent with Asterix-v4 for 40 million timesteps. Within the six-hour...

I see. When you refer to schedules being reset when resuming training, is this whether `reset_num_timesteps` is set to `True` or `False` in `model.learn()`? I thought of this when looking...

Thank you for your advice concerning schedules. I modified some of the experiment manager code when running a trained agent, and it seemed to do the trick. Below is what...

Thank you. I am considering looking at one implementation of minimax and some papers involving a version of MCTS adapted for simultaneous-move games to guide me. This may diverge from...