[mlpack-git] master: Include new metric view. (b9c1967)

gitdub at mlpack.org gitdub at mlpack.org
Tue Jul 5 07:49:45 EDT 2016


Repository : https://github.com/mlpack/mlpack.org
On branch  : master
Link       : https://github.com/mlpack/mlpack.org/compare/3e1a42abd0fda7e3e2d2042fbcc16ac27730bbe5...db9baf02bb66d50f7a4f5e0924db643684ecbaa4

>---------------------------------------------------------------

commit b9c196767fa3563e1f74e71528a6ecab6ce56469
Author: Marcus Edel <marcus.edel at fu-berlin.de>
Date:   Tue Jul 5 13:49:45 2016 +0200

    Include new metric view.


>---------------------------------------------------------------

b9c196767fa3563e1f74e71528a6ecab6ce56469
 benchmark.html   | 7 +++++++
 js/benchmarks.js | 1 +
 2 files changed, 8 insertions(+)

diff --git a/benchmark.html b/benchmark.html
index 37a61e4..1fea519 100644
--- a/benchmark.html
+++ b/benchmark.html
@@ -95,6 +95,12 @@ non-interactive visualizations, which included memory usage graphs for
       <label for="chart-type-radio-5" class="chart-type-radio-label">Sorted dataset metric score for any algorithm/parameter combination</label>
     </div>
 
+    <div>
+      <input class="chart-type-radio" type="radio" name="chart-type" value="metric-multiple-parameter-comparison" id="chart-type-radio-6" onclick="chartTypeSelect()">
+      <label for="chart-type-radio-6" class="chart-type-radio-label">Metric analysis with multiple parameters for an algorithm/dataset combination</label>
+    </div>
+
+
     <div class="selectholder" id="selectholder"></div>
     <div class="clear"></div>
     <div class="mainbox-content">
@@ -115,5 +121,6 @@ non-interactive visualizations, which included memory usage graphs for
   <script src='js/benchmarks/dataset-comparison-view.js'></script>
   <script src='js/benchmarks/metric-comparison-view.js'></script>
   <script src='js/benchmarks/highest_metric-comparison-view.js'></script>
+  <script src='js/benchmarks/metric-multiple-parameter-comparison-view.js'></script>
 </body>
 </html>
diff --git a/js/benchmarks.js b/js/benchmarks.js
index ac57971..b807854 100644
--- a/js/benchmarks.js
+++ b/js/benchmarks.js
@@ -103,6 +103,7 @@ function chartTypeSelect()
 
   if (chartType == "algorithm-parameter-comparison") { activeChartType = rc; }
   else if (chartType == "historical-comparison") { activeChartType = hc; }
+  else if (chartType == "metric-multiple-parameter-comparison") { activeChartType = mmpc; }
   else if (chartType == "metric-parameter-comparison") { activeChartType = mpc; }
   else if (chartType == "dataset-comparison") { activeChartType = dc; }
   else if (chartType == "metric-comparison") { activeChartType = mc; }




More information about the mlpack-git mailing list