일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- VC dimension
- matrix multiplication
- neural network
- elimination
- machine learning
- gradient descent
- vapnik chervonenkis
- Linear algebra
- backpropagation
- Today
- Total
목록Fundamental/Linear Algebra (2)
AI / ML
Contents 1. Matrix Multiplication (4 ways!) 2. Inverse Matrix 1. Matrix Multiplication 1) inner product (regular) 2) (important) column operation 3) (important) row operation 4) external product 2. Inverse Matrix 1) definition 2) singular case reason for A is not invertible 행렬안의 두 벡터(row or column)가 dependent하다면 linear combination(선형조합)으로 모든 벡터를 만들 수는 없습니다. 3) non-singular case reason for A is i..
Contents 1. Elimination 2. Back Substitution 3. Matrix Multiplication 4. Elimination Matrices 1. Elimination 아래 방정식을 풀어보겠습니다. 방정식을 Augmented Matrix 형태로 나타내면 아래와 같고 행연산을 통해 좌측으로부터 최대한 많은 0을 만들어줍니다. 2. Back Substitution Augmented Matrix를 Elimination 연산을 하여 나온 결과 값을 다시 방정식 형태로 나타내면 아래와 같습니다. 아래 방정식에서는 밑에서 위쪽으로 올라오면서 순서대로 z, y, x의 해를 구할 수 있습니다. 밑에서 부터 위쪽으로 올라오면서 해를 구하는 것을 Back Substitution이라고 합니다. 3..