사이킷런(Scikit-learn) 머신러닝 주요 모델 정리
·
AI/머신러닝
0. (공통)환경 세팅 및 데이터 탐색# 코드실행시 경고 메시지 무시import warningswarnings.filterwarnings(action='ignore')0-1. 라이브러리 불러오기import numpy as npimport pandas as pdimport matplotlib.pyplot as pltimport seaborn as snsimport warningswarnings.filterwarnings(action='ignore')%config InlineBackend.figure_format = 'retina'0-2. 데이터 읽어오기# 회귀 모델용 예제 데이터 (보스턴의 집 값을 예측)path_Regression = 'https://raw.githubusercontent.com/coco..