-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
51 lines (51 loc) · 1.79 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
// 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": "Visualize",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/forecasting/eval.py",
"console": "integratedTerminal",
"args": [
"visualise-minimap-forecast",
"--run-path=/media/bryce/nfs/minimap-experiments/tournament/36be5c4e842663fc95602e37224a260a"
]
},
{
"name": "Eval",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/forecasting/eval.py",
"console": "integratedTerminal",
"args": [
"evaluate-all",
"--workspace=/media/bryce/nfs/outcome-experiments/492",
"--datapath=/media/bryce/nfs/outcome-subset-tournament",
"--outdir=tournament"
]
},
{
"name": "Train",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/forecasting/train.py",
"console": "integratedTerminal",
"justMyCode": true,
"cwd": "${workspaceFolder}/forecasting",
"args": [
"--workspace=workspace",
"--epoch=10",
"--config-file=cfg/minimap-unet-residule.yml",
"--pbar",
"--brief=testing outcome forecast",
"--workers=8",
"--dali-py-workers=6"
],
"envFile": "${workspaceFolder}/.env"
},
]
}