-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogistic-regression.html
51 lines (38 loc) · 1.49 KB
/
logistic-regression.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>A Visual Introduction To Machine Learning</title>
<!-- Style Sheets -->
<link rel="stylesheet" href="logistic-regression/style.css">
<link rel="stylesheet" href="libraries/css/layout.css">
<link rel="stylesheet" href="libraries/css/typography.css">
<!-- JS Scripts -->
<script type="text/javascript" src="libraries/js/d3.js"></script>
<script type="text/javascript" src="libraries/js/jquery-3.1.1.min.js"></script>
</head>
<body>
<header>
<div id = "website-title">
<h2>A Visual Introduction To Machine Learning</h2>
</div>
<div id = "menu-bar">
<center>
<a href="index.html"><button>Background</button></a>
<a href="decision-tree.html"><button>DecisionTree</button></a>
<a href="logistic-regression.html"><button>Logistic<br>Regression</button></a>
<a href="k-nearest-neighbors.html"><button>K Nearest<br>Neighbors</button></a>
<a href="k-means.html"><button>K Means</button></a>
</center>
</div>
</header>
<!-- Page title -->
<div id = "page-title">
<center> <h1>Logistic Regression</h1> </center>
</div>
<footer>
<p class="white">Copyright 2017 by Sarah Kelley, Brad Putman, and David Skarbrevik.
<br>School of Information, University of California, Berkeley. All rights reserved.</p>
<p class="white">Website design derived from a template created by
<u><a href="http://www.fabianbentz.de">Fabian Bentz</a></u>.</p>
</footer>
</body>