From 56de1d9fa51eae46c57f7fe34bbb99181ed9e868 Mon Sep 17 00:00:00 2001 From: Colombo Date: Tue, 21 Jan 2020 18:50:52 +0400 Subject: [PATCH] 1 --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ .vscode/settings.json | 0 .vscode/tasks.json | 0 3 files changed, 26 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f8857c1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // 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": "DFL train TEST", + "subProcess": true, + "justMyCode": true, + "type": "python", + "request": "launch", + "program": "${env:DFL_ROOT}\\main.py", + "pythonPath": "${env:PYTHONEXECUTABLE}", + "cwd": "${env:WORKSPACE}", + "console": "integratedTerminal", + "args": ["train", + "--training-data-src-dir", "${env:WORKSPACE}\\data_src\\aligned", + "--training-data-dst-dir", "${env:WORKSPACE}\\data_dst\\aligned", + "--model-dir", "${env:WORKSPACE}\\model", + "--model", "TEST" + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e69de29 diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..e69de29