본문 바로가기

개발/AI (ML, DL, DS, etc..)

(11)
ML : 배경지식 [Notion : 1/18] Ⅰ. 인공지능, 머신러닝, 딥러닝 인공지능, 머신러닝, 딥러닝의 관계 1.1 머신러닝 머신러닝, 다른말로 기계학습이라고 하는 기법이다. 직관적으로 머신이 학습하는걸 의미하는데 어떻게 학습하는지는 전통적인 프로그램의 운용방식과 비교해보면 차이점이 명확하다. 위처럼 전통적인 프로그램의 경우 사람이 각각의 테스크에 관여를 하게 되지만 머신러닝 알고리즘을 활용한 경우 입력값과 해당 정답값에 대한 결괏값을 입력할 경우 그 사이 관계를 찾아서 알고리즘이 새로운 프로그램을 만듭니다. 이후 새로운 데이터가 주입될 때마다 값을 예측하고 관계를 조정하여 최적의 관계를 추론하게 됩니다. 즉, 머신러닝은 아래와 같은 단계를 밟아갑니다. 머신러닝 알고리즘으로 입력된 데이터간의 관계를 정함. 관계를 바탕으로 새로운 프로그램(모델..
Pandas Tutorials [Notions : 1/12] Pandas Tutorials Pandas is a Python library for data manipulation and analysis, and can be conveniently used to process large amounts of data. An introduction to the basic use of Pandas. Examples and explanations refer to pandas official documentation. Ref link : https://codetorial.net/pandas/index.html # Importing module import numpy as np import matplotlib.pyplot as plt import pandas as pd Pan..
Matplotlib Tutorials [Notions : 1/9] Matplotlib Tutorials Matplotlib is a plotting library. In this section give a brief introduction to the pyplot module, which provides a plotting system similar to that of MATLAB Ref link : https://cs231n.github.io/python-numpy-tutorial/ # Importing Module import numpy as np import matplotlib.pyplot as plt Plotting The most important function in matplotlib is plot. whicth allows you to plot 2D da..
Numpy Tutorials 02 [Notion : 1/9] Numpy Tutorials Numpy is the core library for scientific computing in Python. Ref link : https://cs231n.github.io/python-numpy-tutorial/ # Module Import import numpy as np Boolean array indexing Boolean array indexing lets you pick out arbitrary elements of an array. Frequently this type of indexing is used to select the elements of an array that satisfy some condition. a = np.array([1,2],[3,4],..
Numpy Tutorials 01 [Notion : 1/4] Numpy Tutorials Numpy is the core library for scientific computing in Python. Ref link : https://cs231n.github.io/python-numpy-tutorial/ # Importing Module import numpy as np Arrays Numpy array is a grid of values. all of the same type, and is indexed by a tuple of nonnegative integers. The number of dimensions is the rank of the array. The shape of an array is a tuple of integers giving the siz..