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

목차 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...

copy (deep copy) np.copy: Deep copy, allocates new memory space by referencing. a = np.array([[1, 2.5, 3], [-1, -2, -1.5], [4, 5.5, 6]], dtype=np.float64) b = a # Shallow copy, referenc...

eye / identity np.eye: Function to fill 1s into a band. a = np.eye(2,3, k=1, dtype=np.float64) # 2, 3 are rows and columns respectively, k is the band id, dtype is data type [[...

Characteristics of Numpy A library for mathematical and scientific computing. It processes or computes matrices and arrays. Can generate random numbers via random.rand. Creating a Matrix...