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
I used the following two methods to obtain the observations and get slightly different results: obs_list, reward, done, info = env.step(action, project=True, obs_as_dict=False).
Just after this line, use another function to get observation, obs_list2 = env.get_observation().
But obs_list is not equal to obs_list2, with abs error around 1e-4. Not sure what happens between these two lines that changes the observation values.
The text was updated successfully, but these errors were encountered:
@bmmi Sorry for the delayed response. The errors in v_tgt_field are due to the observation giving v_tgt_field based on the previous position. Thus, you should not see errors in other fields. Please let us know if this description does not match your observations.
We are aware of the lag in v_tgt_field. We thought a good solution should not be sensitive to how v_tgt_field is updated but will consider fixing it (or at least will make .get_observation() to give the correct values) in Round 2.
Hi there,
I used the following two methods to obtain the observations and get slightly different results:
obs_list, reward, done, info = env.step(action, project=True, obs_as_dict=False)
.Just after this line, use another function to get observation,
obs_list2 = env.get_observation()
.But
obs_list
is not equal toobs_list2
, with abs error around 1e-4. Not sure what happens between these two lines that changes the observation values.The text was updated successfully, but these errors were encountered: