assert cell_architecture == Tree.build_tree_from_torch_module(net_config.building_block), 'Err'
Thanks for your work, but when I run the arch_search.py, it has error as follows:
File "arch_search.py", line 44, in
do you know what happend? and how to solve it ? @han-cai thanks.
Hey, have you solved this error? I have got exact the same one as yours. Any idea on how to deal with it?
This is because when groups in conv layer is 1, Tree.build_tree_from_torch_module(net_config.building_block) will automatically consider it as Conv while cell_architecture built from net_config_for_sample will still consider it as GroupConv.
I think it is an ignorable error and maybe you can comment it.