D-X-Y / AutoDL-Projects

Automated deep learning algorithms implemented in PyTorch.
MIT License
1.56k stars 281 forks source link

How to show the network structure? #8

Closed duoduoda closed 5 years ago

duoduoda commented 5 years ago

Thanks for your work.

I have trained the cifar10 by GDAS_F1,I want to know the network structure which I get by searching. How can I get it?

thank you.

D-X-Y commented 5 years ago

Thanks for your interest. GDAS_F1 is our searched model, to visualize it you can use this python code : https://github.com/D-X-Y/GDAS/blob/master/exps-cnn/cvpr-vis.py. This repo does not include the searching code, more details are explained in https://github.com/D-X-Y/GDAS/issues/5

Best Regards,

duoduoda commented 5 years ago

Thank you for your reply.

So, the cell and network are your searched model? and this code do not combine the searching of cell and network?

D-X-Y commented 5 years ago

Yes, this code does not include the searching procedure. The released cell is searched by GDAS, and the network (macro-structure) during searching is similar to the one during training. We only search for the cell and the network structure is pre-defined.