I have some problems when I test the ofa pretrained network.
I build a ofa network using the code provided in the README.
from model_zoo import ofa_net
ofa_network = ofa_net('ofa_mbv3_d234_e346_k357_w1.0', pretrained=True)
ofa_network.set_active_subnet(ks=7, e=6, d=4)
subnet = ofa_network.get_active_subnet(preserve_weight=True)
# test the subset on the validation set of the ImageNet
When I set the parameter ks, e and d with different value, the accuracy of the ofa network becomes about 0 in some cases. I show the test results in the following:
Have I made some mistake while testing the ofa pretrained network?
Thanks for sharing your code.
I have some problems when I test the ofa pretrained network.
I build a ofa network using the code provided in the README.
When I set the parameter
ks
,e
andd
with different value, the accuracy of the ofa network becomes about 0 in some cases. I show the test results in the following:Have I made some mistake while testing the ofa pretrained network?