CarlaClient connected
Traceback (most recent call last):
File "train.py", line 97, in <module>
env = DummyVecEnv([make_env(client, args.seed, vae=vae)])
File "/home/joshua/anaconda/lib/python3.6/site-packages/stable_baselines/common/vec_env/dummy_vec_env.py", line 17, in __init__
self.envs = [fn() for fn in env_fns]
File "/home/joshua/anaconda/lib/python3.6/site-packages/stable_baselines/common/vec_env/dummy_vec_env.py", line 17, in <listcomp>
self.envs = [fn() for fn in env_fns]
File "/home/joshua/Documents/Accelerating Training of DRL/utils/utils.py", line 116, in _init
n_stack=n_stack)
File "/home/joshua/Documents/Accelerating Training of DRL/environment/env.py", line 38, in __init__
shape=(1, self.z_size + self.n_commands * n_command_history),
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
Using this python train.py --algo sac -n 10000
How do I train without VAE?
Everytime I don't use VAE I get the error below ```