Closed JunyaoHu closed 1 year ago
Thanks for pointing this out, it seems there are extra columns in the coords files that we hadn't intended to include. The first two columns in either tensor are the (x,y)
coordinates describing the car's position (that we use as described in Section 5 of the paper). So to get them you can just use e.g.
coords = np.load('./CARLA_Town_01/no-traffic/coords_1.npy')[:, :2]
We never use the actions_*.npy
files. We released them to make possible e.g. action-conditional video generation in future work but I would have to look in more detail to figure out why they are the same as the coords_*.npy
files and what exactly the other columns mean.
It seems that
actions_*.npy
andcoords_*.npy
are same things.