Benjamin Spiegel
Results
2
comments of
Benjamin Spiegel
What exactly is the recommended solution? I've got an environment with a `MultiBinary((8, 8))` observation space and can't run PPO or A2C. Has anyone written a wrapper yet? If not...
@Aditya-Ramesh-10 I did something along these lines to go for full observability. This is in ACModel: ``` # Define image embedding self.image_conv = nn.Sequential( nn.Conv2d(3, 16, (2, 2), padding=1 if...