forked from epigen/CellWhisperer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
99 lines (99 loc) · 3.16 KB
/
launch.json
File metadata and controls
99 lines (99 loc) · 3.16 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"version": "0.2.0",
"configurations": [
{
"type": "python",
"request": "launch",
"name": "Train immgen",
"program": "${workspaceFolder}/src/cellwhisperer/jointemb/training.py",
"condaEnv": "cellwhisperer",
"args": [
"fit",
"--model.model_config.projection_dim",
"128",
"--model.model_config.locking_mode",
"LU",
"--model.model_config.transcriptome_model_type",
"geneformer",
"--data.nproc",
"0",
"--data.dataset_name",
"immgen",
"--log_level",
"INFO",
"--trainer.fast_dev_run",
"true",
],
"cwd": "${workspaceFolder}",
"module": null,
"justMyCode": true,
},
{
"type": "python",
"request": "launch",
"name": "Run training fast_dev_run with default config",
"program": "${workspaceFolder}/src/cellwhisperer/jointemb/training.py",
"args": [
"fit",
"--trainer.fast_dev_run",
"true",
"--model.model_config.projection_dim",
"128",
"--model.model_config.locking_mode",
"LU",
"--model.model_config.transcriptome_model_type",
"geneformer",
"--data.nproc",
"0"
],
"cwd": "${workspaceFolder}",
"module": null,
"justMyCode": true,
},
{
"type": "python",
"request": "launch",
"name": "Run training fit with run_config.yaml",
"program": "${workspaceFolder}/src/cellwhisperer/jointemb/training.py",
"args": [
"fit",
"--config",
"${workspaceFolder}/run_config.yaml",
"--data.nproc",
"0"
],
"cwd": "${workspaceFolder}",
"module": null,
"justMyCode": false,
},
{
"name": "Remote DAP debugging (meduni)",
"type": "python",
"request": "attach",
"connect": {
"host": "s0-n02.hpc.meduniwien.ac.at",
"port": 5679
},
"pathMappings": [
{
"localRoot": "/home/moritz/Projects/cellwhisperer",
"remoteRoot": "/msc/home/mschae83/cellwhisperer_private"
}
],
"justMyCode": false
},
{
"type": "python",
"request": "launch",
"name": "Debug sweeping",
"program": "${workspaceFolder}/src/cellwhisperer/jointemb/sweeping.py",
"args": [
"--sweep_config",
"${workspaceFolder}/src/experiments/sweeps/debug_sweep/sweep_config.yaml",
],
"cwd": "${workspaceFolder}",
"module": null,
"justMyCode": false,
},
]
}