Jump to content

GstInference/Benchmarks: Difference between revisions

Line 450: Line 450:
</style>
</style>
<div id="Buttons_Model" style="margin: auto; width: 1300px; height: auto;">
<div id="Buttons_Model" style="margin: auto; width: 1300px; height: auto;">
<button class="button" id="show_inceptionv1">Show InceptionV1 </button>
<button class="button" id="show_inceptionv1_cpu">Show InceptionV1 </button>
<button class="button" id="show_inceptionv2">Show InceptionV2 </button>
<button class="button" id="show_inceptionv2_cpu">Show InceptionV2 </button>
<button class="button" id="show_inceptionv3">Show InceptionV3 </button>
<button class="button" id="show_inceptionv3_cpu">Show InceptionV3 </button>
<button class="button" id="show_inceptionv4">Show InceptionV4 </button>
<button class="button" id="show_inceptionv4_cpu">Show InceptionV4 </button>
<button class="button" id="show_tinyyolov2">Show TinyYoloV2 </button>
<button class="button" id="show_tinyyolov2">Show TinyYoloV2 </button>
<button class="button" id="show_tinyyolov3">Show TinyYoloV3 </button>
<button class="button" id="show_tinyyolov3">Show TinyYoloV3 </button>
Line 626: Line 626:


         /*Select the backend to filter the data to show in the chart*/
         /*Select the backend to filter the data to show in the chart*/
         var show_inceptionv1 = document.getElementById('show_inceptionv1');
         var show_inceptionv1_cpu = document.getElementById('show_inceptionv1_cpu');
         show_inceptionv1.onclick = function () {
         show_inceptionv1_cpu.onclick = function () {
           view.setColumns([0,1,2]);
           view.setColumns([0,1,2]);
           view.hideColumns([3,4,5,6,7,8,9,10,11,12]);
           view.hideColumns([3,4,5,6,7,8,9,10,11,12]);
           materialChart.draw(view, materialOptions);
           materialChart.draw(view, materialOptions);
         }
         }
         var show_inceptionv2 = document.getElementById("show_inceptionv2");
         var show_inceptionv2_cpu = document.getElementById("show_inceptionv2_cpu");
         show_inceptionv2.onclick = function() {
         show_inceptionv2_cpu.onclick = function() {
           view.setColumns([0,3,4]);
           view.setColumns([0,3,4]);
           view.hideColumns([1,2,5,6,7,8,9,10,11,12]);
           view.hideColumns([1,2,5,6,7,8,9,10,11,12]);
           materialChart.draw(view, materialOptions);
           materialChart.draw(view, materialOptions);
         }
         }
         var show_inceptionv3 = document.getElementById('show_inceptionv3');
         var show_inceptionv3_cpu = document.getElementById('show_inceptionv3_cpu');
         show_inceptionv3.onclick = function() {
         show_inceptionv3_cpu.onclick = function() {
           view.setColumns([0,5,6]);
           view.setColumns([0,5,6]);
           view.hideColumns([1,2,3,4,7,8,9,10,11,12]);
           view.hideColumns([1,2,3,4,7,8,9,10,11,12]);
           materialChart.draw(view, materialOptions);
           materialChart.draw(view, materialOptions);
         }
         }
         var show_inceptionv4 = document.getElementById("show_inceptionv4");
         var show_inceptionv4_cpu = document.getElementById("show_inceptionv4_cpu");
         show_inceptionv4.onclick = function() {
         show_inceptionv4_cpu.onclick = function() {
           view.setColumns([0,7,8]);
           view.setColumns([0,7,8]);
           view.hideColumns([1,2,3,4,5,6,9,10,11,12]);
           view.hideColumns([1,2,3,4,5,6,9,10,11,12]);
507

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.