-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
executable file
·142 lines (128 loc) · 6.09 KB
/
blog.html
File metadata and controls
executable file
·142 lines (128 loc) · 6.09 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE HTML>
<!--
Spatial by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Emile Mathieu - Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="Works" />
<meta name="keywords" content="works,Emile Mathieu,Mathieu emile,emilemathieu" />
<link rel="shortcut icon" href="Images/enpc_favicon.ico" type="image/vnd.microsoft.icon" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<!--<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/skel/2.2.1/skel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/skel-layers/2.0.2/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90612705-1', 'auto');
ga('send', 'pageview');
</script>
<noscript>
<!-- <link rel="stylesheet" href="css/skel.css" /> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skel/2.2.1/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body class="landing">
<!-- Header -->
<header id="header" class="alt">
<nav id="share" style="left: 1.25em;">
<ul class="icons">
<li style="margin-left:1em"><a href="https://github.com/emilemathieu" target="_blank" class="icon fa-github"><span class="label">Github</span></a></li>
<li style="margin-left:1em"><a href="https://fr.linkedin.com/in/emilemathieu" target="_blank" class="icon fa-linkedin-square"><span class="label">Linkedin</span></a></li>
</ul>
</nav>
<!--<h1><strong><a href="index.html">Emile Mathieu</a></strong></h1>-->
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<!-- <li><a href="software.html">Software</a></li> -->
<li><a href="works.html">Works</a></li>
<li><a href="misc.html">Misc</a><li>
<li><strong><a href="blog.html">Blog</a></strong><li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<h2>Emile Mathieu</h2>
</section>
<!-- misc -->
<section id="misc" class="wrapper">
<div class="container" style="max-width: 1000px; line-height: 140%;">
<header class="major special">
<h2>Blog</h2>
<p>Tutorial articles</p>
</header>
<p id="svm">
<a href="blog_svm.html">
<span class="image left">
<img src="Images/svm.png" title="SVM" alt="SVM" style="max-width: 120px">
</span>
</a>
<h4>
An efficient soft-margin kernel SVM implementation in Python
<a href="blog_svm.html"><span class="image right"><img src="" title=" alt="" style="max-width: 15px"></span></a>
</h4>
<blockquote>
A simple tutorial to understand and build a soft-margin kernel SVM implementation in Python
</blockquote>
[<a href="blog_svm.html">Post</a>]
</p>
</div>
</section>
<!-- contact -->
<section id="contact" class="wrapper style1 special">
<div class="container">
<header class="special">
<h2>Contact me</h2>
</header>
<div class="feature-grid">
<div class="feature">
<div class="image small rounded" ><img src="Images/email2.png" alt=""/></div>
<div class="content small">
<header>
<h4>Email</h4>
</header>
emile.mathieu-at-stats.ox.ac.uk
</div>
</div>
<div class="feature">
<div class="image rounded small"><img src="Images/post2.png" alt="" /></div>
<div class="content small">
<header>
<h4>Post</h4>
</header>
Department of Statistics<br>
University of Oxford<br>
24-29 St Giles<br>
Oxford OX1 3LB, UK
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="copyright">
<li>Copyright © Emile Mathieu</li>
</ul>
</div>
</footer>
</body>
</html>