From 4c015056016a4c783ce6cecad388f311f088fe7f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 8 May 2023 04:15:25 +0200 Subject: [PATCH] Add turbo test run runConfig --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8fcc03d..0eeb6ae 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,21 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Turbo test run", + "type": "python", + "request": "launch", + "module": "unimore_bda_6", + "justMyCode": false, + "env": { + "WORKING_SET_SIZE": "1000", + "TRAINING_SET_SIZE": "100", + "VALIDATION_SET_SIZE": "50", + "EVALUATION_SET_SIZE": "50", + "NLTK_DATA": "./data/nltk", + }, + "cwd": "${workspaceFolder}", + }, { "name": "Test run", "type": "python",