-
Notifications
You must be signed in to change notification settings - Fork 2
/
regression.html
68 lines (57 loc) · 1.53 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Lets teach machines! day 2</title>
<meta charset="utf-8">
<style>
@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);
body { font-family: 'Helvetica';
font-size: 50px;
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-slide-content {
font-size: .5em;
}
</style>
</head>
<body>
<textarea id="source">
class: center, middle
# Lets teach machines!
>> ##### or may be first lets learn how to teach machines
---
# Agenda
1. Linear regression
2. Logistic regression
3. Hands on (after lunch)
---
##Examples
* Adventure park review → foot fall in the park
* Competitor advertising → decreased sales (if the get it right)
* Car recency → better price
* Collectible car
* 1/ number of cars produced → price
* Older → better price
* House
* Bigger the house → more price
* Utilities → price
* Parking → price
---
#Fit the line
!["Linear data"](images/linear1.png)
---
!["Linear data"](images/linear2.png)
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>