grg
Results
2
comments of
grg
I believe you can fix this by adding `gt.reset_root() `at the end of the `BatchRLAlgorithm` constructor. Add it at:` rlkit/core/batch_rl_algorithm.py` line 43 (or in your case `il_batch_rl_algorithm.py`)
For me, the error appeared in the pytorch version "1.10.2+cu2". It was caused by calling both ```F.relu``` or ```nn.ReLU()``` (```inplace=False``` didn't fix it). I fixed it by manually implementing relu:...