Update assets/js/calibration.js
Browse files- assets/js/calibration.js +3 -3
assets/js/calibration.js
CHANGED
@@ -61,18 +61,18 @@ $(document).ready(function(){
|
|
61 |
var ts_text = "_t" + (temp*100).toString();
|
62 |
if (ts_text === "_t100") {
|
63 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model]["none"][bin_num]).toFixed(5);
|
64 |
-
return "images/" + "cifar100
|
65 |
}
|
66 |
else
|
67 |
{
|
68 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model][cur_tool][temp.toString()][bin_num]).toFixed(5);
|
69 |
-
return "images/"+"cifar100
|
70 |
}
|
71 |
}
|
72 |
else
|
73 |
{
|
74 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model][cur_tool][bin_num]).toFixed(5);
|
75 |
-
return "images/"+"cifar100
|
76 |
}
|
77 |
}
|
78 |
});
|
|
|
61 |
var ts_text = "_t" + (temp*100).toString();
|
62 |
if (ts_text === "_t100") {
|
63 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model]["none"][bin_num]).toFixed(5);
|
64 |
+
return "images/" + "cifar100" + "/" + cur_model + "/none/" + "bin" + bin_num_text + actualOnly + ".png";
|
65 |
}
|
66 |
else
|
67 |
{
|
68 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model][cur_tool][temp.toString()][bin_num]).toFixed(5);
|
69 |
+
return "images/"+"cifar100"+"/"+cur_model+"/"+cur_tool+"/"+"bin"+bin_num_text+ts_text+actualOnly+".png";
|
70 |
}
|
71 |
}
|
72 |
else
|
73 |
{
|
74 |
ece_board.innerText = parseFloat(cifar100_ece_data[cur_model][cur_tool][bin_num]).toFixed(5);
|
75 |
+
return "images/"+"cifar100"+"/"+cur_model+"/"+cur_tool+"/"+"bin"+bin_num_text+actualOnly+".png";
|
76 |
}
|
77 |
}
|
78 |
});
|