add recommender to repository

This commit is contained in:
hannes.kuchelmeister
2020-05-04 10:49:59 +02:00
parent 67ae83e0bd
commit 719f3d5ea7
51 changed files with 5792 additions and 0 deletions

32
.vscode/launch.json vendored Normal file
View 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}/"}
}
]
}