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
For "BabyAI-MixedTrainLocal-v0", the action_space is Discrete(7),
while in experiments/configs/local_gpu_config.yaml, the action_space is ["turn_left","turn_right","go_forward","pick_up","drop","toggle"], which is Discrete(6).
So how many actions are in "BabyAI-MixedTrainLocal-v0"? and what exact actions they are?
they are not ["turn_left","turn_right","go_forward","pick_up","drop","toggle"]?
The text was updated successfully, but these errors were encountered:
The actions we specify in our config are the ones we authorize the LLM to score (we removed the "done" action from the list you show). Our code then parses this list and replaces underscores with spaces:
For "BabyAI-MixedTrainLocal-v0", the action_space is Discrete(7),
while in experiments/configs/local_gpu_config.yaml, the action_space is ["turn_left","turn_right","go_forward","pick_up","drop","toggle"], which is Discrete(6).
So how many actions are in "BabyAI-MixedTrainLocal-v0"? and what exact actions they are?
they are not ["turn_left","turn_right","go_forward","pick_up","drop","toggle"]?
The text was updated successfully, but these errors were encountered: