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
When dropping objects, we either get True or False based on whether the object was dropped.
In the case when the drop fails due to the agent not being in a good position to drop it from, the function goes on to see if it can drop it in any of the receptacles.
If it was, it breaks out of the loop. Now, since the drop was succesful and list of possible_receptacles is not empty, the function returns a False. Should it not be returning a True as soon as it hits line 858? since the object was dropped in one of the receptacles?
The text was updated successfully, but these errors were encountered:
When dropping objects, we either get True or False based on whether the object was dropped.
In the case when the drop fails due to the agent not being in a good position to drop it from, the function goes on to see if it can drop it in any of the receptacles.
It then checks if this drop was succesful :
ai2thor-rearrangement/rearrange/environment.py
Line 857 in 7fcf881
If it was, it breaks out of the loop. Now, since the drop was succesful and list of possible_receptacles is not empty, the function returns a False. Should it not be returning a True as soon as it hits line 858? since the object was dropped in one of the receptacles?
The text was updated successfully, but these errors were encountered: