You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/home/users/akvallapuram/project/ofa.py", line 104, in __init__
best_valids, best_info = finder.run_evolution_search(params['efficiency_constraint'])
File "once_for_all/ofa/nas/search_algorithm/evolution.py", line 87, in run_evolution_search
sample, efficiency = self.random_valid_sample(constraint) # returns
File "once_for_all/ofa/nas/search_algorithm/evolution.py", line 41, in random_valid_sample
efficiency = self.efficiency_predictor.predict_network_latency_given_config(net_config)
File "once_for_all/ofa/nas/efficiency_predictor/latency_lookup_table.py", line 248, in predict_network_latency_given_config
predicted_latency += self.query(
File "once_for_all/ofa/nas/efficiency_predictor/latency_lookup_table.py", line 195, in query
return self.lut[key]['mean']
KeyError: 'Conv-input:224x224x3-output:112x112x24'
I print the keys of self.lut, and I find the following keys:
I am trying to obtain specialised deployment with MobileNetV3 architecture, but I obtain the following the error. Kindly suggest on what must be done.
The error originates from this code:
but I get the following error:
I print the keys of
self.lut
, and I find the following keys:The text was updated successfully, but these errors were encountered: