Closed axiniu closed 6 years ago
And when I take place of the architecture in cifar10_macro_final.sh. with an architecture produced by ./scripts/cifar10_macro_search.sh
fixed_arc="3"
fixed_arc="$fixed_arc 0 0"
fixed_arc="$fixed_arc 1 0 0"
fixed_arc="$fixed_arc 3 1 0 0"
fixed_arc="$fixed_arc 1 0 0 0 0"
fixed_arc="$fixed_arc 1 1 0 0 0 0"
fixed_arc="$fixed_arc 5 0 0 1 0 0 1"
fixed_arc="$fixed_arc 4 1 1 1 1 1 1 0"
fixed_arc="$fixed_arc 3 0 0 0 1 1 0 1 0"
fixed_arc="$fixed_arc 4 1 0 0 1 0 1 1 0 0"
fixed_arc="$fixed_arc 0 0 0 0 1 1 0 0 1 0 0"
fixed_arc="$fixed_arc 5 0 0 1 0 1 0 0 0 0 0 0"
I got an error:
Traceback (most recent call last):
File "src/cifar10/main.py", line 360, in
Hi @axiniu,
Thank you for your interest in our work. To get a network with 24
layers, you need to change --child_num_layers from 12
to 24
.
As for the error, we'll look into it and let you know.
you just need to implement max pooling and average pooling
Thank you for your work. After I tried some experiments,I met met some questions: For ciafr10,there are two search space and corresponding experiments:
----./scripts/cifar10_macro_search.sh ./scripts/cifar10_macro_final.sh ----./scripts/cifar10_micro_search.sh ./scripts/cifar10_micro_final.sh 1> ----I want to confirm the difference between the architectures produced by cifar10_macro_search.sh and cifar10_micro_search.sh. (one is ) 2> I found the architectures produced by cifar10_macro_search.sh like [1] [1 1] [5 0 0] [5 0 0 0] [0 0 1 1 0] [1 1 0 0 0 0] [1 1 0 1 1 1 0] [3 0 0 1 0 1 1 1] [5 0 0 1 0 0 1 0 0] [1 1 1 0 0 0 0 1 0 0] [0 1 1 0 0 0 0 1 1 1 1] [0 0 1 1 1 1 0 1 0 0 1 1], which has 12 cells,while in cifar10_macro_final.sh,the architecture is fixed_arc="0" fixed_arc="$fixed_arc 3 0" fixed_arc="$fixed_arc 0 1 0" fixed_arc="$fixed_arc 2 0 0 1" fixed_arc="$fixed_arc 2 0 0 0 0" fixed_arc="$fixed_arc 3 1 1 0 1 0" fixed_arc="$fixed_arc 2 0 0 0 0 0 1" fixed_arc="$fixed_arc 2 0 1 1 0 1 1 1" fixed_arc="$fixed_arc 1 0 1 1 1 0 1 0 1" fixed_arc="$fixed_arc 0 0 0 0 0 0 0 0 0 0" fixed_arc="$fixed_arc 2 0 0 0 0 0 1 0 0 0 0" fixed_arc="$fixed_arc 0 1 0 0 1 1 0 0 0 0 1 1" fixed_arc="$fixed_arc 2 0 1 0 0 0 0 0 1 0 1 1 0" fixed_arc="$fixed_arc 1 0 0 1 0 0 0 1 1 1 0 1 0 1" fixed_arc="$fixed_arc 0 1 1 0 1 0 1 0 0 0 0 0 1 0 0" fixed_arc="$fixed_arc 2 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1" fixed_arc="$fixed_arc 2 0 1 0 0 0 1 0 0 1 1 1 1 0 0 1 0" fixed_arc="$fixed_arc 2 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 0 1" fixed_arc="$fixed_arc 3 0 1 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0" fixed_arc="$fixed_arc 3 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1" fixed_arc="$fixed_arc 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 1 1 0 0" fixed_arc="$fixed_arc 3 0 1 0 1 1 0 0 1 0 1 1 0 1 1 0 1 0 0 1 0 0" fixed_arc="$fixed_arc 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0" fixed_arc="$fixed_arc 0 1 1 0 0 0 1 1 1 0 1 0 0 0 1 0 1 0 0 1 1 0 0 0", which has 24 cells. So I want to konw where to get architecture like the one in cifar10_macro_final.sh. Thanks for you response.