본문 바로가기

전체 글108

2-2. 선형결합 본 글은 주재걸교수님의 인공지능을 위한 선형대수 강의를 듣고 정리한 내용입니다. Linear Combinations(v1, v2 ...) Weights or Coefficients(c1, c2, ...) Span Span is defined as the set of all linear combinations of vector Collection of all vectors that can be written in the form c1v1 + c2v2 + ... + cpvp Linear Combination of columns Linear Combination of rows (Rank-1) outer product위 예시에서 vector -> Matrix Sum of (Rank-1) outer product.. 2021. 12. 28.
2-1. 선형방정식과 선형시스템 본 글은 주재걸교수님의 인공지능을 위한 선형대수 강의를 듣고 정리한 내용입니다. Linear Equation Other expression method Linear System : Set of Equations Identity Matrix(In) A square matrix whose diagonal entries are all 1's, and the other entries are zeros. Inverse Matrix For a square matrix A, its inverse matrix A^-1 A^-1A = AA^-1 = In Solving Linear System via Inverse Matrix Non-Invertible Matrix A for 𝐴𝐱 = 𝐛 if A is invertible.. 2021. 12. 27.
1. 선형대수의 기초 본 글은 주재걸교수님의 인공지능을 위한 선형대수 강의를 듣고 정리한 내용입니다. Scalar : a single number s ∈R Vector : an ordered list of numbers (unordered list : Set) Matrix : a tow-dimensional array of numbers Row Vector : a horizontal vector Column Vector : a vertical vector Square Matrix(#rows = #columns) Rectangular Matrix(#rows ≠ #columns) Transpose of Matrix Element-wise addition(Matrix should have the same size) Scalar m.. 2021. 12. 27.
Ubuntu에 CUDA, CuDNN 설치하기 * 본 포스팅은 RTX 3070, Ubuntu 18.04를 기준으로 작성합니다. 1. CUDA CUDA ("Compute Unified Device Architecture", 쿠다)는 그래픽 처리 장치(GPU)에서 수행하는 (병렬 처리) 알고리즘을 C 프로그래밍 언어를 비롯한 산업 표준 언어를 사용하여 작성할 수 있도록 하는 GPGPU 기술이다. 사용하고 있는 GPU에 맞는 CUDA 버전을 확인해줍니다. en.wikipedia.org/wiki/CUDA#GPUs_supported CUDA - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Parallel computing platform and program.. 2021. 12. 23.
Windows10에 CUDA, cuDNN 설치하기 1. CUDA CUDA ("Compute Unified Device Architecture", 쿠다)는 그래픽 처리 장치(GPU)에서 수행하는 (병렬 처리) 알고리즘을 C 프로그래밍 언어를 비롯한 산업 표준 언어를 사용하여 작성할 수 있도록 하는 GPGPU 기술이다. 사용하고 있는 GPU에 맞는 CUDA 버전을 확인해줍니다. en.wikipedia.org/wiki/CUDA#GPUs_supported CUDA - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Parallel computing platform and programming model CUDA (Compute Unified Device Archi.. 2021. 7. 15.
Jupyter에서 Anaconda 가상환경 커널 사용하기 일반적인 .py 확장자 파일을 실행하기 위해서는 가상환경에 진입해서 실행시켜주면 됩니다. 그러나 jupyter에서 사용할 경우, 각 노트북에 kernel을 지정해주어야 가상환경을 사용할 수 있기 때문에 kernel을 생성하는 방법에 대해 포스팅을 진행하게 됐습니다. 1. conda 가상환경 진입 conda activate # ex. conda activate edge 2. package설치 conda install nb_conda_kernels -y pip install ipykernel 3. kernel 등록 python -m ipykernel install --user --name --display-name "" 4. jupyter notebook kernel 확인 jupyter kernelspec .. 2021. 4. 16.