JSCC/.vscode/launch.json
2024-03-18 13:52:46 +08:00

42 lines
1.1 KiB
JSON

{
// 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: 当前文件",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"--lr",
"1e-3",
"--epochs",
"100",
"--batch_size",
"512",
"--if_scheduler",
"1",
"--step_size",
"500",
"--dataset",
"cifar10",
"--num_workers",
"4",
"--device",
"cuda:0",
"--ratio_list",
"1/3",
"--snr_list",
"100",
"--seed",
"42",
"--disable_tqdm",
"False"
]
}
]
}