forked from wookayin/tensorflow-talk-debugging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (67 loc) · 2.66 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>A Practical Guide for Debugging Tensorflow Codes (@wookayin)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400|Roboto:400,300,500);
@import url(https://fonts.googleapis.com/css?family=Lato);
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
</style>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
</head>
<body>
<div id="slideshow"></div>
<div id="overlay"></div>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<script src="./remark-latest.min.js" type="text/javascript"></script>
<script src="lib/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'] ],
displayMath: [ ['$$','$$'], ["\[","\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"] }
});
</script>
<script type="text/javascript" async src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/javascript">
var hljs = remark.highlighter.engine;
window['hljs'] = hljs;
</script>
<!--
<script src="lib/terminal.language.js" type="text/javascript"></script>
-->
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: 'slides/main.md',
highlightStyle: 'github',
highlightLines: true,
// navigation options
navigation: {
scroll: false,
touch: true,
click: false
},
// Disable counting of incremental slides in the slide counting
countIncrementalSlides: false
});
window['slideshow'] = slideshow;
// extract the embedded styling from ansi spans
$('code.terminal span.hljs-ansi').replaceWith(function(i, x) {
x = x.replace(/<(\/?(span).*?)>/g, '<$1>');
return x;
});
// make all the outlinks open in a new tab
$('a[href^=http]').attr('target', '_blank');
</script>
</body>
</html>