Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- Meta Learning
- ML
- clean code
- 머신러닝
- pytorch
- dl
- Depth estimation
- PRML
- FGVC
- cs
- nlp
- REACT
- SSL
- Python
- Front
- Torch
- classification
- Vision
- FineGrained
- 자료구조
- CV
- nerf
- math
- 3d
- algorithm
- computervision
- GAN
- web
- 알고리즘
- Today
- Total
목록Linear Algebra (1)
KalelPark's LAB
[ CLEAN CODE ] Clean Python, Numpy with Linear Algebra
Machine Learning 및 Deep Learning에서는 선형대수를 알아야 하는 것은 필수입니다..! 선형대수와 관련된 Numpy를 톺아보도록 하겠습니다. - 단위 행렬(identity Matrix) : np.Unit(x) - 대각 행렬(Diagonal Matrix) : np.diag(x) - 내적(Dot Product, inner product) : np.dot(a, b) - 대각합(Trace) : np.trace(x) - 행렬식(Matrix Determinant) : np.linalg.det(x) - 역행렬(Inverse of a Matrix) : np.linalg.inv(x) - 고유값(Eigenvalue) : np.linalg.eig(x) - 특이값 분해(Singular Value Deco..
Python/CLEAN CODE
2023. 1. 21. 22:27