사이킷런 (scikit learn) 에서의 교차검증 (cross validation), Kfold 정리
Sklearn 헷갈리는 module 정리. Sklearn version : v0.20.2 기준 작성. 1. sklearn.model_selection.KFold K 개의 subsample들 (fold) 로 나누고 index를 반환해준다. 사용 예시를 보자. from sklearn.model_selection import KFold import numpy as np X = np.arange(16).reshape((8,-1)) y = np.arange(8).reshape((-1,1)) kf = KFold(n_splits=4) for train_index, test_index in kf.split(X): print("TRAIN:", train_index, "TEST:", test_index) X_train, ..
컴퓨터 과학 이야기(Computer Science)/데이터 과학
2018. 12. 22. 02:48
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- sublime text
- 사이킷런 KFold
- vs code
- variable
- 파이토치
- Visual Studio Code에서 R
- Pytorch .data
- scikit learn
- Pytorch Variable
- 박사과정 #PhD
- pytorch
- 비쥬얼스튜디오코드
- 비트 벡터
- sklearn.model_selection.KFold
- vscode
- cross validation
- 교차검증
- r
- 사이킷런
- Bit vector
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함