mirror of
https://github.com/13hannes11/bachelor_thesis_m.recommend.git
synced 2024-09-04 01:11:00 +02:00
add recommender to repository
This commit is contained in:
32
.vscode/launch.json
vendored
Normal file
32
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
// 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": "Python: app.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/src/app.py",
|
||||
"console": "integratedTerminal",
|
||||
"env": {"PYTHONPATH": "${workspaceRoot}/src/"}
|
||||
},
|
||||
{
|
||||
"name": "Python: evaluation",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/eval.py",
|
||||
"console": "integratedTerminal",
|
||||
"env": {"PYTHONPATH": "${workspaceRoot}/"}
|
||||
},
|
||||
{
|
||||
"name": "Python: visualization",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/vis.py",
|
||||
"console": "integratedTerminal",
|
||||
"env": {"PYTHONPATH": "${workspaceRoot}/"}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user