2022-06-29 14:12:00 +00:00
|
|
|
{
|
2023-04-01 17:31:04 +00:00
|
|
|
// 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: Current File",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/src/main.py",
|
|
|
|
// "program": "${workspaceFolder}/src/spheres.py",
|
|
|
|
// "program": "${workspaceFolder}/src/datamodule.py",
|
|
|
|
"args": [
|
|
|
|
// "fit",
|
|
|
|
"predict",
|
|
|
|
// "--ckpt_path",
|
|
|
|
// "${workspaceFolder}/lightning_logs/version_264/checkpoints/epoch=9-st&ep=1000.ckpt",
|
|
|
|
"--data.num_workers",
|
|
|
|
"0",
|
|
|
|
"--trainer.benchmark",
|
|
|
|
"false",
|
|
|
|
"--trainer.num_sanity_val_steps",
|
|
|
|
"0",
|
|
|
|
"--data.persistent_workers",
|
|
|
|
"false",
|
|
|
|
"--data.batch_size",
|
|
|
|
"1",
|
|
|
|
"--trainer.val_check_interval",
|
|
|
|
"1"
|
|
|
|
],
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|