BayesNet/.vscode/launch.json

73 lines
2.2 KiB
JSON
Raw Normal View History

2023-06-29 20:00:41 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
2023-07-25 23:39:01 +00:00
"name": "sample",
"program": "${workspaceFolder}/build/sample/BayesNetSample",
"args": [
2023-07-25 23:39:01 +00:00
"-d",
"iris",
"-m",
2023-08-24 10:58:53 +00:00
"TANLd",
2023-08-03 18:22:33 +00:00
"-s",
"271",
2023-07-25 23:39:01 +00:00
"-p",
2023-07-30 17:00:02 +00:00
"/Users/rmontanana/Code/discretizbench/datasets/",
],
2023-07-30 17:00:02 +00:00
//"cwd": "${workspaceFolder}/build/sample/",
2023-06-29 20:00:41 +00:00
},
{
"type": "lldb",
"request": "launch",
"name": "experiment",
"program": "${workspaceFolder}/build/src/Platform/main",
"args": [
"-m",
2023-08-31 18:30:28 +00:00
"AODE",
"-p",
2023-09-02 11:58:12 +00:00
"/home/rmontanana/Code/discretizbench/datasets",
"--stratified",
"-d",
2023-09-02 11:58:12 +00:00
"mfeat-morphological",
2023-08-31 18:30:28 +00:00
"--discretize"
2023-08-24 10:58:53 +00:00
// "--hyperparameters",
// "{\"repeatSparent\": true, \"maxModels\": 12}"
],
2023-09-02 11:58:12 +00:00
"cwd": "/home/rmontanana/Code/discretizbench",
2023-06-30 00:46:06 +00:00
},
2023-08-13 14:19:17 +00:00
{
"type": "lldb",
"request": "launch",
"name": "manage",
"program": "${workspaceFolder}/build/src/Platform/manage",
"args": [
"-n",
"20"
],
"cwd": "/Users/rmontanana/Code/discretizbench",
},
{
"type": "lldb",
"request": "launch",
"name": "list",
"program": "${workspaceFolder}/build/src/Platform/list",
"args": [],
"cwd": "/Users/rmontanana/Code/discretizbench",
},
2023-06-30 00:46:06 +00:00
{
"name": "Build & debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bayesnet",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "CMake: build"
2023-06-29 20:00:41 +00:00
}
]
}