D-X-Y / AutoDL-Projects

Automated deep learning algorithms implemented in PyTorch.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to quickly retrain network architecture from scratch after getting the best topology

xielinzhen opened this issue · comments

commented

python ./exps/NATS-algos/search-cell.py --dataset cifar10 --data_path $TORCH_HOME/cifar.python --algo darts-v1 --rand_seed 777

With the above commands, I have the best topology(|nor_conv_1x10|+|none0|none1|+|nor_conv_3x30|nor_conv_1x11|none2|),

How do I train this topology from scratch?

For the NATS-bench, it does not need to re-train it from scratch, as you can easily query the re-training performance via NATS-Bench API, see https://github.com/D-X-Y/NATS-Bench
And see examples in our code: https://github.com/D-X-Y/AutoDL-Projects/blob/main/exps/NATS-algos/search-cell.py#L727

commented

For the NATS-bench, it does not need to re-train it from scratch, as you can easily query the re-training performance via NATS-Bench API, see https://github.com/D-X-Y/NATS-Bench And see examples in our code: https://github.com/D-X-Y/AutoDL-Projects/blob/main/exps/NATS-algos/search-cell.py#L727

Thanks for your reply and your great work!