How to remove the conv layers in default network of PPOTrainer

I have an observation space of [100, 2 , 11200].I get the following error everytime I try to train a PPOTrainer:

ValueError:No default configuration for obs shape [100, 2, 11200]

Hi @jiangzhangze,

You have three options.

  1. Add some conv layer shapes to your model config
  2. Create a custom model and handle it however you would like.
  3. Flatten your space in the environment.