BayesNet/.vscode/launch.json

97 lines
2.9 KiB
JSON
Raw Permalink 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_debug/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",
"/home/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_debug/src/Platform/b_main",
"args": [
"-m",
2023-11-14 08:12:25 +00:00
"STree",
"--stratified",
"-d",
"iris",
//"--discretize"
2023-08-24 10:58:53 +00:00
// "--hyperparameters",
// "{\"repeatSparent\": true, \"maxModels\": 12}"
],
"cwd": "/home/rmontanana/Code/discretizbench",
2023-06-30 00:46:06 +00:00
},
2023-08-13 14:19:17 +00:00
{
2023-09-21 23:04:36 +00:00
"type": "lldb",
"request": "launch",
"name": "best",
"program": "${workspaceFolder}/build_debug/src/Platform/b_best",
2023-09-21 23:04:36 +00:00
"args": [
"-m",
"BoostAODE",
"-s",
"accuracy",
"--build",
],
"cwd": "/home/rmontanana/Code/discretizbench",
2023-09-21 23:04:36 +00:00
},
{
2023-08-13 14:19:17 +00:00
"type": "lldb",
"request": "launch",
"name": "manage",
"program": "${workspaceFolder}/build_debug/src/Platform/b_manage",
2023-08-13 14:19:17 +00:00
"args": [
"-n",
"20"
],
"cwd": "/home/rmontanana/Code/discretizbench",
2023-08-13 14:19:17 +00:00
},
{
"type": "lldb",
"request": "launch",
"name": "list",
"program": "${workspaceFolder}/build_debug/src/Platform/b_list",
"args": [],
2023-09-30 16:44:21 +00:00
//"cwd": "/Users/rmontanana/Code/discretizbench",
"cwd": "/home/rmontanana/Code/covbench",
},
2023-10-06 15:08:54 +00:00
{
"type": "lldb",
"request": "launch",
"name": "test",
"program": "${workspaceFolder}/build_debug/tests/unit_tests",
2023-10-06 15:08:54 +00:00
"args": [
"-c=\"Metrics Test\"",
// "-s",
],
"cwd": "${workspaceFolder}/build/tests",
},
2023-06-30 00:46:06 +00:00
{
"name": "Build & debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build_debug/bayesnet",
2023-06-30 00:46:06 +00:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "CMake: build"
2023-06-29 20:00:41 +00:00
}
]
}