You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you plz tell me what does state[2] stand for in pedstrians exsisting scenario?
I got torch.size([1, 96, 48]) of torch.cat([state[0], state[2]], axis=1))) instead of ([64, 4, 3, 3]) .
The text was updated successfully, but these errors were encountered:
Could you plz tell me what does state[2] stand for in pedstrians exsisting scenario? I got torch.size([1, 96, 48]) of torch.cat([state[0], state[2]], axis=1))) instead of ([64, 4, 3, 3]) .
the index of state here is defined in https://github.com/DRL-Navigation/img_env/blob/master/envs/wrapper/filter_states.py
state[0]: means sensor_maps, [batch, 1, 48, 48], egocentric sensor map.
state[2]: ped_maps, [batch, 3, 48, 48] , egocentric 3-channel pedestrians map, which means x,y velocity and position of the nearby pedestrians.
DDRL4NAV/USTC_lab/nn/nav_encoder.py
Line 72 in 8d52815
Could you plz tell me what does state[2] stand for in pedstrians exsisting scenario?
I got torch.size([1, 96, 48]) of
torch.cat([state[0], state[2]], axis=1)))
instead of ([64, 4, 3, 3]) .The text was updated successfully, but these errors were encountered: