Fix some mistakes in tensors treatment

This commit is contained in:
2023-07-26 01:39:01 +02:00
parent be06e475f0
commit 099b4bea09
18 changed files with 255 additions and 72 deletions

20
.vscode/launch.json vendored
View File

@@ -4,13 +4,19 @@
{
"type": "lldb",
"request": "launch",
"name": "bayesnet",
"program": "${workspaceFolder}/build/sample/main",
"name": "sample",
"program": "${workspaceFolder}/build/sample/BayesNetSample",
"args": [
"-f",
"iris"
"-d",
"iris",
"-m",
"TAN",
"-p",
"../../data/",
"--stratified",
"--tensors"
],
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}/build/sample/",
"preLaunchTask": "CMake: build"
},
{
@@ -25,7 +31,9 @@
"TAN",
"-p",
"../../../data/",
"--discretize"
"--discretize",
"-f",
"2"
],
"cwd": "${workspaceFolder}/build/src/Platform",
},