{ // 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": "Band selection", "type": "python", "request": "launch", "program": "band_selection.py", "console": "integratedTerminal", "cwd": "${workspaceFolder}/backend", "justMyCode": true, "args": ["--subj", "XW01", "--band-min", "5", "--band-max", "55"] }, { "name": "Train model", "type": "python", "request": "launch", "program": "training.py", "console": "integratedTerminal", "cwd": "${workspaceFolder}/backend", "justMyCode": true, "args": ["--subj", "XW01", "--model-type", "riemann"] }, { "name": "Validate model", "type": "python", "request": "launch", "program": "validation.py", "console": "integratedTerminal", "cwd": "${workspaceFolder}/backend", "justMyCode": true, "args": ["--subj", "XW01", "-scth", "0.75", "--model-filename", "riemann_rest+flex_11-23-2023-10-56-58.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, } ] }