-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chapter1Notes.Rmd
49 lines (28 loc) · 1.35 KB
/
Chapter1Notes.Rmd
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
---
title: "Chapter1"
author: "Julin Maloof"
date: "11/3/2020"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Book Notes
## Chapter 1: what is deep learning?
### AI, Machine Learning, Deep Learning
__AI__ automate intellectual tasks normally performed by humans.
Early efforts attempted to make a bunch of rules for the machine to follow. e.g. early chess programs, etc.
But these fail as the tasks get harder.
__Machine Learning__
Can a computer learn the rules from the data without us telling us what the rules are?
Input data and answers and have the computer figure out the rules, instead of the classic paradigm of input data and rules and compute the answer.
Need to find appropriate _Representation_ of the data in order to learn from it.
Learning: automate the search for better representations.
__DEEP learning__
successive layers of representations
Number of layers == _depth_
The layers in deep learning are usually neural networks
Each layer has _weights_ which are essentially parameters for the layer. There can be millions of weights.
We use a _loss function_ to determine how far away the predictions are from the target (truth). We will want to minimize the loss function.
The _optimizer_ adjusts the weights to improve the loss function via backpropogation
## History of Machine Learning