{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "autograder", "type": "python", "request": "launch", "program": "autograder.py", "cwd": "${workspaceFolder}/src", "args": [ "-q", "q8", // "--student-code=valueIterationAgents.py", ] }, { "name": "debug", "type": "python", "request": "launch", "program": "pacman.py", "cwd": "${workspaceFolder}/src", "args": [ "-p", "ApproximateQAgent", "-x", "50", "-n", "60", "-l", "mediumGrid", "-a", "extractor=${input:extractor}", ], "console": "integratedTerminal" } ], "inputs": [ { "type": "pickString", "id": "extractor", "options": [ "IdentityExtractor", "CoordinateExtractor", "SimpleExtractor", ], "default": "SimpleExtractor", "description": "" }, { "type": "promptString", "id": "epsilon", "default": "0.5", "description": "" }, { "type": "promptString", "id": "learning_rate", "default": "0.5", "description": "" }, ] }