Posts by Tag



AI

인공지능이란

인간처럼/이성적으로 + 생각하는/행동하는 시스템 = 인공지능

Algorithm

간단한 Big O Notation

Youtube:The Ultimate Big O Notation Tutorial (Time & Space Complexity For Algorithms) 보고 정리 한것.

ML

Machine Learning: Naive Bayes

``` import numpy as np X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]]) ##Features Y = np.array([1, 1, 1, 2, 2, 2]) ##Labels

Python

통계