зеркало из https://github.com/microsoft/archai.git
Removed redundant petridish debug launcher.
This commit is contained in:
Родитель
aeaaebc707
Коммит
7c3e3d4b2c
|
@ -173,15 +173,7 @@
|
|||
"program": "${cwd}/scripts/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": ["--algos", "gs"]
|
||||
},
|
||||
{
|
||||
"name": "Petridish-Full",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${cwd}/scripts/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": ["--full", "--algos", "petridish"]
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "Random-Full",
|
||||
"type": "python",
|
||||
|
|
|
@ -223,6 +223,8 @@ class Search:
|
|||
if not self.pareto_enabled:
|
||||
yield self.base_reductions, self.base_cells, self.base_nodes
|
||||
else:
|
||||
# TODO: what happens when reductions is 3 but cells is 2? have to step
|
||||
# through code and check
|
||||
for reductions in range(self.base_reductions, self.max_reductions+1):
|
||||
for cells in range(self.base_cells, self.max_cells+1):
|
||||
for nodes in range(self.base_nodes, self.max_nodes+1):
|
||||
|
|
Загрузка…
Ссылка в новой задаче