Finish project 5 and class.

This commit is contained in:
2022-01-04 10:38:24 -05:00
parent 17ff044b6d
commit 76a519cfa9
3 changed files with 59 additions and 13 deletions

26
p5_classification/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "run_file",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "features",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/dataClassifier.py",
"args" : ["-d", "pacman", "-c", "perceptron", "-f", "-g", "ContestAgent", "-t", "1000", "-s", "1000"]
},
{
"name": "autograder",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/autograder.py",
"args" : []
}
]
}

View File

@@ -0,0 +1,3 @@
{
"python.pythonPath": "/usr/bin/python2"
}