자율주행에서의 waymo와 tesla

참조한 영상을 살펴보면 waymo와 tesla의 자율주행 컨셉의 차이는 어떤 센서를 주로 사용하는 지에 따라 나뉘어...

2 minute read

2 x 2 행렬의 고유값과 고유벡터 공식

출처 : http://www.math.harvard.edu/archive/21b_fall_04/exhibits/2dmatrices/index.html 이번 글에서는 2 x 2 행렬에서만 사용할 수 있는 간단한 공식 방식의...

2 minute read

Python을 이용한 Toast Message 생성

Python을 이용하여 토스트 메시지를 생성하는 방법이 다양하게 있는데 그 중 plyer 라이브러리를 사용하는 방법에 대하여...

1 minute read

PyQt5 개념 및 코드 snippets

설치 : pip install pyqt5 물론 설치는 가상 환경을 새로 만들어서 설치하는 것을 권장드립니다. 참조...

13 minute read

Pyinstaller 사용 방법

이번 글에서는 작성한 python 프로그램을 실행 파일로 변환하는 방법에 대하여 알아보도록 하겠습니다. 전체 내용은 공심...

1 minute read

python 외부 package snippets

목차 tqdm을 이용한 progress 출력 pygame 으로 mp3 파일 출력 pyautogui 으로 화면 해상도 출력...

5 minute read

헝가리안(hungarian) 알고리즘, 최소 비용 작업 배분

출처 https://www.topcoder.com/community/competitive-programming/tutorials/assignment-problem-and-hungarian-algorithm/ http://www.cse.ust.hk/~golin/COMP572/Notes/Matching.pdf http://mip.hnu.kr/courses/network/chap8/chap8.html https://docs.scipy.org/doc/scipy-0.18.1/reference/generated/scipy.optimize.linear_sum_assignment.html https://skkuassa.tistory.com/186 https://gazelle-and-cs.tistory.com/29 이번 글에서는 최소 비용으로 작업을 배분하는 문제인 헝가리안...

1 minute read

PReLU (Parametric ReLU)

이번 글에서는 PReLU (Parametric ReLU)에 대하여 간략하게 알아보겠습니다. ReLU는 최근 딥러닝 네트워크의 activation function으로 필수적으로...

3 minute read

Global Average Pooling 이란

deep learning 관련 글 목차 참조 : https://kevinthegrey.tistory.com/142 참조 : https://blog.naver.com/nywoo19/221930484253 참조 : https://discuss.pytorch.org/t/global-average-pooling-in-pytorch/6721/11 Covolution...

3 minute read

Activation function 요약

이번 글에서는 다양한 Activation function들을 쉽게 요약해 놓은 그림을 이용하여 설명드리겠습니다. 위 그림에서는 그래프와 식...

1 minute read