머신러닝 커맨드 정리
·
KT AIVLE School/머신러닝
🩶 기본- 필요한 설치# 한글 표시를 위한 라이브러리 설치!pip install koreanize_matplotlib -q# xgboost 설치# !pip install xgboost# lightgbm 설치# !pip install lightgbm - 기본 라이브러리import numpy as npimport pandas as pdimport matplotlib.pyplot as pltimport seaborn as snsimport warningswarnings.filterwarnings(action='ignore')%config InlineBackend.figure_format='retina' - 전체 사용 라이브러리# 데이터 분리 from sklearn.model_selection import t..