Jayden Li
Results
1
comments of
Jayden Li
A temporary fix I used is to remove the `net_arch` keyword argument from src/imitation/policies/base.py:104 ``` super().__init__(*args, **kwargs, net_arch=[32, 32]) ``` to ``` super().__init__(*args, **kwargs) ``` This is not an intelligent...