
Machine Learning - Linear Regression
해당 포스트는 Andrew Ng 교수님의 Machine Learning Specialization 특화 과정에 대한 정리 내용을 참고하였습니다. 목차 Linear Regression Model - 선형 회귀 모델 Terminology And Notation - 용어와 표기법 How to represent mod...

해당 포스트는 Andrew Ng 교수님의 Machine Learning Specialization 특화 과정에 대한 정리 내용을 참고하였습니다. 목차 Linear Regression Model - 선형 회귀 모델 Terminology And Notation - 용어와 표기법 How to represent mod...

목차 명사 - 보통체 형 명사 - 정중체 형 일문따 서브 노트 출처입니다. 작성해주신 분께 정말 감사드립니다. 일본어 일문따 서브노트 첫째마디 - 명사 익히기 일본어 일문따 1과 명사 보통체형 반말 ① -(이)다 名詞だ これは辞書だ。 今日は日曜日だ。 ② -야 名詞 ...

해당 포스트는 Andrew Ng 교수님의 Machine Learning Specialization 특화 과정에 대한 정리 내용을 참고하였습니다. 목차 Supervised Learning - 지도 학습 Unsupervised Learning - 비지도 학습 Supervised Learning - 지도 학습 ...

목차 AI, ML, DL 정리 AI 개발 개념, 툴 정리 필요한 수학 지식 AI, ML, DL 정리 AI, ML, DL 이 세 가지 용어 중 가장 넓은 범주를 가진 용어는 인공지능인 AI 입니다. AI (Artificial Intelligence) 는 크게 다음 범주로 구분됩니다. ...

Toeplitz Matrix Toeplitz Matrix 는 주로 Digital Image Processing, Signal Processing, Cryptography 등에 사용된다. complex toeplitz 형태도 가능하다. 위 사진을 보면 알겠지만, 대각행렬들이 모두 같고 c (column),r (row) 모두 순환되는...

Scipy 에서의 Band Matrix 입력 기존 밴드 행렬 lower band width = 1, upper band width = 2 인 형태이다. band width 가 행렬 사이즈 n 보다 많이 작다면 (band width « n) 메모리 측면과 계산 효율 측면에서 상당히 유리하게 사용이 가능하다. Scip...

Finding the Determinant from scipy import linalg Import linalg from scipy. Use linalg.det(Matrix) to calculate and return the determinant. The underlying algorithm uses LU Decompos...

Addition and Subtraction of Matrices and Vectors of the Same Size $A = \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix}$ $B = \begin{bmatrix} 5 & 6 \ 7 & 8 \end{bmatrix}$ A = np.arra...

Error Analysis When attempting to upload to TestFlight using Transporter, the following error occurred: Asset validation failed (90206) Invalid Bundle. The bundle at 'TOYVERSE.app/Frameworks/...

hstack / vstack np.hstack((tuple)), np.vstack((tuple)): Allows combining 2D arrays, 1D arrays, or a mix of both. Both perform deep copies. (1) Case of 2D array 2x3 2x2...