|
|
แถว 11: |
แถว 11: |
| <math>A: \cup_{n=1}^{\infty} Z^n \rightarrow F</math> | | <math>A: \cup_{n=1}^{\infty} Z^n \rightarrow F</math> |
| | | |
− | === Loss function === | + | === Learning errors === |
| Suppose the learning algorithm outputs h. The learning error can be measured by | | Suppose the learning algorithm outputs h. The learning error can be measured by |
| | | |
แถว 21: |
แถว 21: |
| | | |
| And that's the reason why we try to learn <math>\mathbb{E}_p[y|x]</math> | | And that's the reason why we try to learn <math>\mathbb{E}_p[y|x]</math> |
| + | |
| + | In other word, we claim that |
| + | |
| + | <math>argmin_{h} \int (y-h(x))^2 dP = argmin_{h} ||f_p - h||^2_{l_2(\mathbb{P})}</math> |
| | | |
| The proof is easy. | | The proof is easy. |
รุ่นแก้ไขเมื่อ 07:24, 30 มีนาคม 2550
This page contains a list of topics, definitions, and results from Machine Learning course at University of Chicago.
Week 1
Learning problem
Given a distribution
on
. We want to learn the objective function
(with respect to the distribution
).
Learning Algorithms
Let Z be the set of possible samples. The learning algorithm is a function that maps a number of samples to a measurable function (denoted here by F a class of all measurable functions). Sometimes we consider a class of computable functions instead.
Learning errors
Suppose the learning algorithm outputs h. The learning error can be measured by
One can prove that minimizing this quantity could be reduced to the problem of minimizing the following quantity.
And that's the reason why we try to learn
In other word, we claim that
The proof is easy.
We get
Then observe that,
- The first term only depends on distribution

- The third term is zero
Observe also that the term
which is zero.
- The second term is equal to
Ordinary Least Square
Tikhonov Regularization
Week 2