12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- // 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": "General training paradigm",
- "type": "python",
- "request": "launch",
- "program": "general_grasp_training.py",
- "console": "integratedTerminal",
- "cwd": "${workspaceFolder}/backend",
- "justMyCode": true,
- "args": ["--subj", "XW01",
- "--n-trials", "15",
- "--com", "COM3",
- "-fm", "flex",
- "-vfr", "0.5",
- "-scth", "0.75",
- "--model-path", "./static/models/XW01/baseline_rest+flex_11-21-2023-09-59-49.pkl"]
- },
- {
- "name": "Free grasping paradigm",
- "type": "python",
- "request": "launch",
- "program": "free_grasp.py",
- "console": "integratedTerminal",
- "cwd": "${workspaceFolder}/backend",
- "justMyCode": true,
- "args": ["--subj", "XW01",
- "--com", "COM3",
- "-scth", "0.75",
- "--model-path", "./static/models/XW01/baseline_rest+flex_11-21-2023-09-59-49.pkl"]
- },
- {
- "name": "Python: 当前文件",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "integratedTerminal",
- "cwd": "${workspaceFolder}/backend",
- "justMyCode": true
- },
- {
- "name": "Python: Debug Tests",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "purpose": [
- "debug-test"
- ],
- "console": "integratedTerminal",
- "cwd": "${workspaceFolder}/backend",
- "env": {
- "PYTHONPATH": "${workspaceFolder}/backend"
- },
- "justMyCode": false,
- }
- ]
- }
|