forked from tensorflow/benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
soumith_benchmarks.html
57 lines (57 loc) · 1.57 KB
/
soumith_benchmarks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./bower_components/plottable/plottable.css">
<style>
body {
font-family: roboto, sans-serif;
}
.plottable .title-label text{
font-size: 16px;
font-family: roboto, sans-serif;
}
h2 {
font-weight: 400;
}
.outer_div {
margin: 20px;
}
</style>
</head>
<body>
<div class="outer_div">
<h2>Alexnet</h2>
<svg id="alexnet_benchmark_plot" width="1000" height="500"></svg>
<h2>Googlenet</h2>
<svg id="googlenet_benchmark_plot" width="1000" height="500"></svg>
<h2>Overfeat</h2>
<svg id="overfeat_benchmark_plot" width="1000" height="500"></svg>
<h2>VGG</h2>
<svg id="vgg_benchmark_plot" width="1000" height="500"></svg>
</div>
<script src="./bower_components/d3/d3.js"></script>
<script src="./bower_components/plottable/plottable.js"></script>
<script src="./js/latency_chart.js"></script>
<script src="./js/csv_benchmark_chart.js"></script>
<script>
var BASE_BENCHMARK_URL =
'https://ci.tensorflow.org/job/nightly-soumith-benchmarks/lastSuccessfulBuild/artifact/';
new CsvLatencyChart(
'svg#alexnet_benchmark_plot',
BASE_BENCHMARK_URL + 'benchmark_alexnet_history.csv')
.makeChart();
new CsvLatencyChart(
'svg#googlenet_benchmark_plot',
BASE_BENCHMARK_URL + 'benchmark_googlenet_history.csv')
.makeChart();
new CsvLatencyChart(
'svg#overfeat_benchmark_plot',
BASE_BENCHMARK_URL + 'benchmark_overfeat_history.csv')
.makeChart();
new CsvLatencyChart(
'svg#vgg_benchmark_plot',
BASE_BENCHMARK_URL + 'benchmark_vgg_history.csv')
.makeChart();
</script>
</body>
</html>