25 lines
No EOL
754 B
Python
25 lines
No EOL
754 B
Python
titles = {
|
|
"mobilenet": "Mobilenet",
|
|
"mobilenet_fb": "Mobilenet with feedback loop",
|
|
"efficienet": "EfficientNet"
|
|
}
|
|
|
|
net_models = {
|
|
"packet switching noc" : ["mobilenet", "mobilenet_fb", "efficienet"],
|
|
"optimal hybrid noc": ["mobilenet_conf", "mobilenet_fb_conf", "efficienet_conf"],
|
|
"non optimal hybrid noc": ["mobilenet_conf_no_opt", "mobilenet_fb_conf_no_opt", "efficienet_conf_no_opt"]
|
|
}
|
|
|
|
final_conf_tasks = {
|
|
"optimal hybrid noc": {
|
|
"mobilenet_conf": 74,
|
|
"mobilenet_fb_conf": 20,
|
|
"efficienet_conf": 138
|
|
},
|
|
"non optimal hybrid noc": {
|
|
"mobilenet_conf_no_opt": 83,
|
|
"mobilenet_fb_conf_no_opt": 20,
|
|
"efficienet_conf_no_opt": 147
|
|
}
|
|
}
|
|
result_folder = "../../results/" |