Jonathan Chung

Results 3 comments of Jonathan Chung

Hi @aadyotb Thank you for the reply. Using `PointwisePrecision`, `PointwiseRecall`, and `PointwiseF1` had the following results: ``` Precision: 0.0238 Recall: 0.3409 F1: 0.0446 ``` It seems like it help too...

I was missing the last render. As a workaround, I added a `"terminal_render"` value in `self.buf_infos` of the `DummyVecEnv` ``` # https://github.com/DLR-RM/stable-baselines3/blob/master/stable_baselines3/common/vec_env/dummy_vec_env.py#L69 def step_wait(self) -> VecEnvStepReturn: ... if self.buf_dones[env_idx]: #...