Sciket-learn

장재성·2021년 7월 12일
0

Python

목록 보기
2/4

dataset.load_xxx
: xxx dataset 불러오기(ex. dataset.load_wine())

fetch_xxx
: 크기가 큰 데이터를 온라인에서 불러오는 datset
(ex. fetch_california_housing())

datsets.make_classification()
: 분류를 위한 dataset 생성

datasets.make_blobs()
: clustering 을 위한 dataset 생성

model_selection module

  • 학습용 데이터와 테스트 데이터로 분리
  • 교차검증 분할 및 평가
  • Estimator의 하이퍼 파라미터 튜닝을 위한 다양한 함수와 클래스 제공
    train_test_split()
    : 학습/테스트 데이터 세트 분리
profile
초심자

0개의 댓글