JuanFuriaz

Results 3 comments of JuanFuriaz

Hi @VanDavv and @themarpe, I already made a lot of adaptation for my prototype so that I wouldn't like to start from scratch with other experiments. I'll first try to...

Hi @tersekmatija, Code worked! Thanks! Nevertheless, I needed to make a workaround because I don't have any IMU data for my own dataset. I just copy one file of the...

The problem seems to be that Off-policy algorithms like DDPG, SAC, TD3 use replay_buffer instead of on-policy algorithms. I modified `finrl/agents/stablebaselines3/models.py` and the problem disappear. ```python def _on_rollout_end(self) -> bool:...