Skip to content

Commit 6fac3bb

Browse files
committed
clean up markdown and structure
1 parent aa4a28a commit 6fac3bb

16 files changed

+127
-50
lines changed

about.markdown

-21
This file was deleted.

about.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
nav_order: 1
6+
---
7+
8+
# Course overview
9+
10+
- Graduate level; offered in the Fall only
11+
- 12 units (3-0-9)
12+
- Prerequisites:
13+
- Linear algebra (at the level of 18.06)
14+
- and Probability (at the level of 6.3700, 6.3800, or 18.600)
15+
- Brief description: Principles, techniques, and algorithms in machine learning from the point of view of statistical inference; representation, generalization, and model selection; and methods such as linear/additive models, active learning, boosting, support vector machines, non-parametric Bayesian methods, hidden Markov models, Bayesian networks, and convolutional and recurrent neural networks. Recommended prerequisite: 6.3900 or other previous experience in machine learning. Enrollment may be limited.
16+
17+
# Staff
18+
19+
- Instructors
20+
- TAs
21+
22+
# Logistics
23+
24+
- Lectures: Tuesday and Thursday, 2:30pm in 32-123
25+
- Recitations: Friday,
26+
- Office hours:
27+
- Instructor office hours: TBD
28+
- TA office hours: TBD
29+
30+
# Grading
31+
32+
- Homework
33+
- Exams
34+
35+
# Recommended Reading
36+
37+
- [B] Pattern Recognition and Machine Learning, Bishop; Springer, 2007.
38+
- [EH] Computer Age Statistical Inference, Efron and Hastie; Cambridge University Press, 2016.
39+
- [JWHT] An Introduction to Statistical Learning, James, Witten, Hastie, Tibshirani; Springer, 2013. Easy read, very pragmatic.
40+
- [SB]/[SSS] Understanding Machine Learning: From Theory to Algorithms, Shalev-Shwartz and Ben-David, 2014.
41+
- [HTF] The Elements of Statistical Learning, Hastie, Tibshirani, Friedman, 2009.
42+
- [S] Introduction to Reinforcement Learning, Sutton, 2018.

index.markdown

-8
This file was deleted.

index.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: page
3+
---
4+
5+
The site is under construction for launch in the fall 2023 semester.

intro.markdown

-11
This file was deleted.

intro.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: page
3+
title: Introduction
4+
# permalink: /intro/
5+
nav_order: 2
6+
---
7+
8+
Machine Learning is ...
9+
10+
Typically, we can break machine learning problems down into three categories, [supervised learning](supervised/), [unsupervised learning](/unsupervised/), and [reinforcement learning](/reinforcement/).

reinforcement.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: about
3+
title: Reinforcement Learning
4+
has_children: true
5+
nav_order: 6
6+
7+
---

reinforcement/bandit.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: about
3+
title: Bandits
4+
parent: Reinforcement Learning
5+
nav_order: 2
6+
---

reinforcement/mdp.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: about
3+
title: Markov Decision Process
4+
parent: Reinforcement Learning
5+
nav_order: 1
6+
---

reinforcement/reinforcement.md

Whitespace-only changes.

review.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: page
3+
title: Review
4+
permalink: /review/
5+
nav_order: 3
6+
7+
---
8+
9+
# Review lecture
10+
11+
## Notations
12+
13+
- Data matrix is of the size $$(n,d)$$ where $n$ is the number of data points, and $$d$$ is the dimension of the features
14+
- Vectors are denoted with a small-case letter; matrices capital letters
15+
- The default norm of a vector is the $l_2$ norm
16+
17+
## Linear algebra, calculus, and optimization
18+
19+
- Gradient
20+
- PSD/PD
21+
- Convexity, strong convexity
22+
- Optimal solutions, uniqueness
23+
24+
## Probability theory and Statistics
25+
26+
### Concepts related to a single distribution
27+
28+
- Multi-variate normal distribution
29+
- Max likelihood and Max log likelihood
30+
31+
### Concepts involving multiple distributions
32+
33+
- Marginal independence
34+
- Joint probability is the product
35+
- Entropy of the joint distribution is the sum of individual entropies
36+
- Bayes' rule
37+
- Conditional independence
38+
- Compare with marginal independence
39+
- Importance sampling
40+
- Jensen inequality
41+
- KL divergence

unsupervised/unsupervised.md renamed to supervised.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: about
3-
title: Unsupervised
3+
title: Supervised Learning
44
has_children: true
55
nav_order: 4
66

supervised/linearRegression.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
layout: about
33
title: Linear Regression
4-
parent: Supervised
4+
parent: Supervised Learning
55
---

supervised/supervised.md

-7
This file was deleted.

unsupervised.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: about
3+
title: Unsupervised Learning
4+
has_children: true
5+
nav_order: 5
6+
7+
---

unsupervised/graphical/graphical.md renamed to unsupervised/graphical.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ layout: about
33
title: Graphical
44
has_children: true
55
nav_order: 4
6-
parent: Unsupervised
6+
parent: Unsupervised Learning
77
---

0 commit comments

Comments
 (0)