2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "All-Toy-NoPareto",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "All-Toy-Pareto",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--nas.search.pareto.enabled", "True",
|
|
|
|
"--nas.search.seed_train.trainer.epochs", "1",
|
|
|
|
"--nas.search.post_train.trainer.epochs", "1"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Darts-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "darts"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Darts-Search-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--no-eval", "--algos", "darts"]
|
|
|
|
},
|
2020-04-09 09:12:24 +03:00
|
|
|
{
|
|
|
|
"name": "Darts-Eval-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-04-09 09:12:24 +03:00
|
|
|
"console": "integratedTerminal",
|
2020-04-23 23:35:01 +03:00
|
|
|
"args": ["--no-search", "--algos", "darts", "--nas.eval.final_desc_filename", "models/darts/final_model_desc1.yaml"]
|
2020-04-09 09:12:24 +03:00
|
|
|
},
|
2020-04-08 11:31:02 +03:00
|
|
|
{
|
|
|
|
"name": "Darts-E2E-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-04-08 11:31:02 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "darts"]
|
|
|
|
},
|
2020-10-14 12:24:12 +03:00
|
|
|
{
|
|
|
|
"name": "Darts-Eval-ImageNet",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-10-14 12:24:12 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "darts", "--datasets", "imagenet", "--no-search", "--nas.eval.final_desc_filename", "models/darts/final_model_desc1.yaml"]
|
|
|
|
},
|
2020-05-18 10:36:32 +03:00
|
|
|
{
|
|
|
|
"name": "DiDarts-E2E-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 10:36:32 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "didarts"]
|
|
|
|
},
|
2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"name": "Darts-Food101-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "darts", "--datasets", "food101"]
|
|
|
|
},
|
2020-04-19 08:14:54 +03:00
|
|
|
{
|
2020-04-25 17:23:33 +03:00
|
|
|
"name": "Darts-ImageNet-Eval-Toy",
|
2020-04-19 08:14:54 +03:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-04-19 08:14:54 +03:00
|
|
|
"console": "integratedTerminal",
|
2020-04-19 15:12:33 +03:00
|
|
|
"args": ["--no-search", "--algos", "darts", "--datasets", "imagenet", "--nas.eval.final_desc_filename", "models/darts/final_model_desc1.yaml"]
|
2020-04-19 08:14:54 +03:00
|
|
|
},
|
2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"name": "Petridish-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "petridish"]
|
|
|
|
},
|
|
|
|
{
|
2020-10-14 12:24:12 +03:00
|
|
|
"name": "Petridish-Eval-ImageNet",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-10-14 12:24:12 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "petridish", "--datasets", "imagenet", "--no-search", "--nas.eval.final_desc_foldername", "models/petridish/pt_sweep_seed_36_epochs_600_scale_2.0/model_desc_gallery"]
|
|
|
|
},
|
|
|
|
{
|
2020-05-18 13:11:07 +03:00
|
|
|
"name": "Petridish-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
2020-07-22 06:49:36 +03:00
|
|
|
"args": ["--algos", "petridish", "--nas.search.pareto.enabled", "True"]
|
2020-05-18 13:11:07 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Xnas-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "xnas"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Xnas-Search-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--no-eval", "--algos", "xnas"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Xnas-E2E-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "xnas"]
|
|
|
|
},
|
2020-05-17 09:48:39 +03:00
|
|
|
{
|
|
|
|
"name": "Divnas-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-17 09:48:39 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "divnas"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Divnas-Search-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-17 09:48:39 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--no-eval", "--algos", "divnas"]
|
|
|
|
},
|
2020-05-21 08:50:09 +03:00
|
|
|
{
|
|
|
|
"name": "Divnas-Eval-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-21 08:50:09 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--no-search", "--full", "--algos", "divnas", "--nas.eval.final_desc_filename", "models/final_model_desc.yaml"]
|
|
|
|
},
|
2020-05-17 09:48:39 +03:00
|
|
|
{
|
|
|
|
"name": "Divnas-E2E-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-17 09:48:39 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "divnas"]
|
|
|
|
},
|
|
|
|
|
2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"name": "Gs-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "gs"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Gs-Search-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--no-eval", "--algos", "gs"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Gs-E2E-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "gs"]
|
2020-09-08 10:20:10 +03:00
|
|
|
},
|
2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"name": "Random-Full",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--full", "--algos", "random"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Random-Toy",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--algos", "random"]
|
|
|
|
},
|
|
|
|
{
|
2020-12-27 07:48:25 +03:00
|
|
|
"name": "Resnet-Toy",
|
2020-05-18 13:11:07 +03:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
2023-02-23 15:41:43 +03:00
|
|
|
"args": ["--no-search", "--algos", "manual"]
|
2020-05-18 13:11:07 +03:00
|
|
|
},
|
2020-09-08 10:20:10 +03:00
|
|
|
{
|
2020-12-27 07:48:25 +03:00
|
|
|
"name": "Resnet-Full",
|
2020-09-08 10:20:10 +03:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-09-08 10:20:10 +03:00
|
|
|
"console": "integratedTerminal",
|
2020-12-27 07:48:25 +03:00
|
|
|
"args": ["--no-search", "--full", "--algos", "manual"]
|
2020-09-08 10:20:10 +03:00
|
|
|
},
|
2020-12-03 03:44:49 +03:00
|
|
|
{
|
2022-10-17 19:17:41 +03:00
|
|
|
"name": "Manual-E2E-Toy",
|
2020-12-03 03:44:49 +03:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/main.py",
|
2020-12-03 03:44:49 +03:00
|
|
|
"console": "integratedTerminal",
|
2020-12-27 07:48:25 +03:00
|
|
|
"args": ["--algos", "manual"]
|
2020-12-03 03:44:49 +03:00
|
|
|
},
|
2020-05-18 13:11:07 +03:00
|
|
|
{
|
|
|
|
"name": "TrainAug resnet50 cocob cifar10",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/augmented_train.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--config", "confs/aug_cifar.yaml;confs/aug_cifar_cocob_resnet50.yaml",
|
|
|
|
"--aug", "fa_reduced_cifar10"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "TrainAug resnet50 sgd cifar10",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/augmented_train.py",
|
2020-05-18 13:11:07 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args": ["--config", "confs/aug_cifar.yaml;confs/aug_cifar_sgd_resnet50.yaml",
|
|
|
|
"--aug", "fa_reduced_cifar10"
|
|
|
|
]
|
|
|
|
},
|
2021-03-05 21:25:53 +03:00
|
|
|
{
|
2022-10-17 19:17:41 +03:00
|
|
|
"name": "Exprep",
|
2021-07-16 20:46:13 +03:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-01-27 17:58:29 +03:00
|
|
|
"program": "${cwd}/scripts/supergraph/reports/exprep.py",
|
2021-07-16 20:46:13 +03:00
|
|
|
"console": "integratedTerminal",
|
2022-10-17 19:17:41 +03:00
|
|
|
"args": ["--results-dir", "C:\\Users\\dedey\\Documents\\archaiphilly\\phillytools\\bilevel_default_20200521",
|
|
|
|
"--out-dir", "C:\\Users\\dedey\\archai_experiment_reports", "--collate"]
|
2021-07-16 20:46:13 +03:00
|
|
|
},
|
2021-01-27 08:13:20 +03:00
|
|
|
{
|
2020-05-18 13:11:07 +03:00
|
|
|
"name": "CurrentFile",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${file}",
|
2023-04-07 22:11:26 +03:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"args":[
|
|
|
|
]
|
2020-05-18 13:11:07 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|