monobeast/minigrid/monobeast_amigo.py [1017:1022]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        agent_location = torch.flatten(frames, 2, 3)
        agent_location = agent_location[:,:,:,0] 
        agent_location = (agent_location == 10).nonzero() # select object id
        agent_location = agent_location[:,2]
        agent_location = agent_location.view(T,B,1)        
        return agent_location 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



monobeast/minigrid/monobeast_amigo.py [1165:1170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        agent_location = torch.flatten(frames, 2, 3)
        agent_location = agent_location[:,:,:,0] 
        agent_location = (agent_location == 10).nonzero() # select object id
        agent_location = agent_location[:,2]
        agent_location = agent_location.view(T,B,1)
        return agent_location    
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



