Supervised Learning - Linear Regression (single-variable)
Linear Regression (선형회귀) : 데이터들을 가장 잘 표현하는 직선의 방정식을 찾는 것 Data 를 대표하는 hypothesis를 직선의 방정식으로 설정 y = Ax + B Step1) Hypothesis Step2) Cost function Step3) Training - gradient descent method Numpy w/o min-max scaling #load module import numpy as np import matplotlib.pyplot as plt #input & label (age and blood pressure) x_input = np.array([15,20,25,30,31,35,42,43,45,50,55,56,66,67,68,70,71,73], dtype=..
2023. 8. 5.