Notes
This function is in beta test. Please help improve it in the issues
here.
Traceback (most recent call last): File "autograder.py", line 425, in <module> runTest(options.runTest, moduleDict, printTestCase=options.printTestCase, display=getDisplay(True, options)) File "autograder.py", line 228, in runTest testCase.execute(grades, moduleDict, solutionDict) File "trackingTestClasses.py", line 157, in execute run(self.layout_str, pac, ghosts, disp, maxMoves=self.maxMoves) File "trackingTestClasses.py", line 250, in run games = busters.runGames(lay, pac, ghosts, disp, nGames, maxMoves) File "/out/package/busters.py", line 542, in runGames game.run() File "/out/package/game.py", line 686, in run action = agent.getAction(observation) File "trackingTestClasses.py", line 417, in getAction self.ghostBeliefs[index] = inf.getBeliefDistribution() File "inference.py", line 546, in getBeliefDistribution dist[t[self.index - 1]] += prob TypeError: 'NoneType' object is not subscriptable
Hints
Your answer may be identical to the JOJ answer in the first several lines.
However, the main problem you meet now is Runtime Error. And the exit code of your program is 1, which should be 0.
Please double check your code to solve this problem and try again.
Your Answer
dict_items([((1, 4), 0.3078), ((2, 3), 0.1116), ((1, 3), 0.5806), ((4, 7), 0.0), ((6, 7), 0.0), ((4, 6), 0.0), ((6, 6), 0.0), ((2, 8), 0.0), ((9, 8), 0.0), ((9, 3), 0.0), ((5, 7), 0.0), ((9, 9), 0.0), ((8, 9), 0.0), ((8, 8), 0.0), ((2, 4), 0.0), ((6, 5), 0.0)]) dict_items([((4, 7), 0.0008), ((1, 3), 0.1194), ((6, 7), 0.0018), ((4, 6), 0.001), ((6, 6), 0.0006), ((2, 8), 0.1134), ((9, 8), 0.1284), ((9, 3), 0.1212), ((9, 9), 0.0292), ((1, 4), 0.113), ((8, 9), 0.1234), ((8, 8), 0.11), ((2, 3), 0.1058), ((5, 7), 0.001), ((2, 4), 0.0304), ((6, 5), 0.0006)]) *** None) Distribution deviated at move 2 by 0.3238 (squared norm) from the correct answer. key: student reference (4, 7): 0.0 0.0008 (1, 3): 0.5806 0.1194 (6, 7): 0.0 0.0018 (4, 6): 0.0 0.001 (6, 6): 0.0 0.00
JOJ Answer
*** None) Joint particle filter observeUpdate test: 0 inference errors. *** PASS: ./test_cases/q9/2-JointParticleUpdate.test