Tessa van der Heiden

Results 5 comments of Tessa van der Heiden

I run it on Ubuntu and dont have this problem.

Hi! No, because it will just add a constant negative reward everytime, so the gradient is not affected ;-)

Hi Felix, So, it would be great to work with newer versions of all packages and Python (just to make it compatible with more user's environments). I've changed the "tf."...

Hey @lucascolley, Thanks for your comment! I've posted a [message](https://mail.python.org/archives/list/[email protected]/thread/3VW5O7AYDIGAOMPGVEGWJ35GJZ27XLR5/), but I am not sure if it resulted in much traction. Any ideas how we can merge it in?

Yes, something like this below? But where to put it, in the `act()`? def remove_wall(self, cell, direction): self.adjacencies[cell[0]][cell[1]].append(direction) # remove opposite action new_cell = cell + self.actions[direction] self.adjacencies[new_cell[0]][new_cell[1]].append(self.opposite[direction]) # remove...