일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- RNN
- 데이터분석
- mnist
- AI
- 앱개발
- 플러터
- 유데미
- CV
- 피플
- Regression
- 42서울
- pytorch
- 회귀
- 머신러닝
- 크롤러
- 자연어처리
- filtering
- 코딩애플
- 선형대수학
- 모델
- map
- Flutter
- Computer Vision
- 파이썬
- 크롤링
- 42경산
- 선형회귀
- 인공지능
- 지정헌혈
- 딥러닝
- Today
- Total
목록Regression (3)
David의 개발 이야기!
연차에 따라 올라가는 임금을 알아보는 모델을 만들어보자! 1. Importing the libraries import numpy as np import pandas as pd import matplotlib.pyplot as plt 2. Importing the dataset dataset = pd.read_csv("Position_Salaries.csv") x = dataset.iloc[:,1:-1].values y = dataset.iloc[:,-1].values 3. Training the Polynomial Regression model on the whole dataset from sklearn.preprocessing import PolynomialFeatures poly_reg = Polyn..
Multiple Linear Regression 다중선형회귀모형에 대해 알아보고, 스타트업 수익조건 을 만들어보자! 1. Importing the libraries 2. Importing the dataset 3. Encoding the categorical data 4. Splitting thd dataset into the Training set and Test set 5. Training the Multiple Linear Regression model on the Training set 6. Predicting the Test set results 1. Importing the libraries import numpy as np import pandas as pd import matplotlib ..
Simple Linear Regression 단순회귀를 적용하는 방법을 알아보고, 연차별 임금 예측 모형을 만들어보자! 1. 라이브러리 호출하기 Importing the libraries 2. 데이터셋 불러오기 Importing the dataset 3. 훈련세트와 테스트 세트로 나누기 Splitting the dataset into the Training set and Test set 4. 단순선형회귀모델에 학습시키기 Training the Simple Linear Regression model on the Training Set 5. 테스트 세트 결과 예측하기 Predicting the Test set results 6. 결과 시각화하기 Visualizing the Training set and th..