randomNAS_release
randomNAS_release copied to clipboard
Code release for paper "Random Search and Reproducibility for NAS"
Hi there, thanks for providing your codes! I am trying to use your repo for my thesis, I was wondering if you could please give some clue, what should I...
Hi, While trying to run python parse_cnn_arch.py "[arch_str]", I am confused about what should be the argument? What is arch_str?
`evaluate()` in `searchers/random_weight_share.py` has `return 1-top1.avg` on line 219. Since it is a percentage, it should be `return 100-top1.avg`
I ran the code "random_weight_share.py" , in the final, it shows "File "random_weight_share.py", line 163, in main with open('./tmp/arch', 'w') as f: IsADirectoryError: [Errno 21] Is a directory: './tmp/arch'" Is...
The authors report the results for the random search baseline without any weight sharing but do not provide the code to reproduce the baseline's result. This would be helpful in...
https://github.com/liamcli/randomNAS_release/blob/master/searchers/random_weight_share.py#L2 hard coded the path of the dep, which caused an error when I run it.
Hi, thanks for your great job! When I try to reproduce your results, I train the supernet using he default parameters but the accuracy of supernet is only about 50%....