반응형
linear regression
-
Gradient_descent 으로 구현한 Linear_Regression머신러닝(MACHINE LEARNING)/간단하게 이론(Theory...) 2021. 4. 22. 14:17
https://www.boostcourse.org/ai222/lecture/24517 머신러닝을 위한 파이썬 부스트코스 무료 강의 www.boostcourse.org 네이버 부스트 코스 (Linear_Regression) 을 참고하였습니다. 1. 모듈 삽입 In [1]: import numpy as np import matplotlib.pyplot as plt %matplotlib inline import pandas as pd 2. LOAD DATASET 여기서, Load_excel()로 import In the following data X = number of claims Y = total payment for all the claims in thousands of Swedish Kronor for..