Skip to content

Commit

Permalink
Updated bashboard, fixed command line arguments to reflect the associ…
Browse files Browse the repository at this point in the history
…ated commands, added support for sklearn recall...
  • Loading branch information
randersenYB committed Jul 21, 2024
1 parent 3b056fb commit 43e0862
Show file tree
Hide file tree
Showing 6 changed files with 785 additions and 342 deletions.
43 changes: 31 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import",
"name": "Python Debugger: hdf_import (prompt DS)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_import.py",
Expand All @@ -78,7 +78,7 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_import (prompt DS)",
"name": "Python Debugger: hdf_import (prompt HDF)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_import.py",
Expand Down Expand Up @@ -137,7 +137,20 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_query",
"name": "Python Debugger: hdf_query (prompt DS)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_query.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "${input:enterDataset}",
"--logfile", "./hdfquery.log",
"-r", "10"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_query (proimpt HDF)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_query.py",
Expand All @@ -150,7 +163,7 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_query (check prompt)",
"name": "Python Debugger: hdf_query (check prompt HDF)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_query.py",
Expand All @@ -171,7 +184,7 @@
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "glove-100-angular",
"--logfile", "./hdfquery.log",
"--logfile", "./hdfquery-glove.log",
"--check",
"-r", "10",
"--searchparams", "{\"ef\":10}"
Expand All @@ -186,7 +199,7 @@
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "glove-100-angular",
"--logfile", "./hdfquery.log",
"--logfile", "./hdfquery-glove.log",
"--check",
"-r", "10",
"--limit", "10"
Expand All @@ -202,14 +215,14 @@
"args": [
"--dataset", "gist-960-euclidean",
"--logfile", "./hdfquery-gist1.log",
"-r", "1",
"--limit", "10",
"-r", "10",
"--limit", "100",
"--idxname", "ANN-data_euclidean_SQUARED_EUCLIDEAN_960_16_100_100_Idx"
],
"console": "integratedTerminal"
},
{
"name": "Python Debugger: hdf_create_dataset (prompt)",
"name": "Python Debugger: hdf_create_dataset (prompt HDF)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/hdf_create_dataset.py",
Expand Down Expand Up @@ -247,14 +260,14 @@
"console": "integratedTerminal"
},
{
"name": "Python Debugger: bigann_convert",
"name": "Python Debugger: bigann_convert (prompt DS)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/aerospike/bigann_convert_hdf.py",
"cwd": "${workspaceFolder}/aerospike",
"args": [
"--dataset", "${input:enterBigDataset}",
"--hdf", "bigtest.hdf5"
"--hdf", "${input:enterBigHDFFile}"
],
"console": "integratedTerminal"
},
Expand All @@ -271,12 +284,18 @@
"type": "promptString",
"description": "Enter Big Dataset",
"default": "random-xs"
},
},
{
"id": "enterHDFFile",
"type": "promptString",
"description": "Enter HDF Path",
"default": "test"
},
{
"id": "enterBigHDFFile",
"type": "promptString",
"description": "Enter HDF Path",
"default": "bigtest"
}
]
}
Loading

0 comments on commit 43e0862

Please sign in to comment.