3
我試圖做的迷宮問題是我的問題: 我也跟着教程和運行例子Pybrains迷宮教程使用pybrains 這裏得到錯誤
envmatrix = [[...]]
env = Maze(envmatrix, (1, 8))
task = MDPMazeTask(env)
table = ActionValueTable(states_nr, actions_nr)
table.initialize(0.)
learner = Q()
agent = LearningAgent(table, learner)
experiment = Experiment(task, agent)
當我運行和顯示
assert self.lastobs != None
FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.
任何人都可以幫助我嗎? 非常感謝
謝謝你的回答! 我注意到另一個是「assert self.lastaction!= None」 像lastobs這樣的想法,我可以重寫嗎? – Benny
@Benny是的,你可以重新寫他們兩個沒問題。 (或者像我說的那樣忽略它們) – Idos