我正在尝试解决一些强化学习问题。为此,我想获得一个带有2D网格的基本示例(在图形上,不仅仅是X或其他东西),以在其上创建RL任务。 我使用Pycharm,并尝试了以下在线教程中看到的代码。但是当我运行它时,没有任何图形显示在我的显示器上。有人可以帮我吗?
from cmath import rect
from tensorflow import fill, size
grid = [ [-1]*8 for n in range(8)]
grid[0][0]=-1
grid [7][7]=-1
w=70
def setup():
size(800, 600)
def draw():
x,y = 0,0 #starting position
for row in grid:
for col in row:
if col == 1:
fill(250,0,0)
else:
fill(255)
rect(x,y,w,w)
x=x+w # move right
y=y+w #move down
x = 0 #rest to left edge