chenxin061 / pdarts

Codes for our paper "Progressive Differentiable Architecture Search:Bridging the Depth Gap between Search and Evaluation"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

confusion about depths of network in different stages

NdaAzr opened this issue · comments

Figure 3 in the PDARTS paper display depths of search networks that are 5, 11, and 17 cells for stage 1, 2 and 3 of P-DARTS respectively.

How we can get these three stages? Should we do train_search three different times with changing this parameter parser.add_argument('--layers', type=int, default=5, help='total number of layers') ?
Could you please clarify this?

It is achieved by a for loop. Please refer to the code.

The --layers only sets the initial number of layers.