Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- nGrinder
- 마이크로서비스
- MSA
- Spring
- 헬름
- cloud native java
- decorator 패턴
- 클라우드 네이티브
- Stress test
- cloud native
- 클라우드 네이티브 자바
- ingress
- CRD
- ansible
- devops
- 자바
- 동기화
- Microservice
- spring microservice
- 코틀린
- Semaphore
- MySQL
- 쿠버네티스
- Kotlin
- Algorithm
- Adapter 패턴
- kubernetes
- 익명클래스
- 머신러닝
- java
Archives
- Today
- Total
목록Pipeline (1)
카샤의 만개시기
sklearn Pipeline 파이프라인
사이킷런의 Pipeline 클래스는 연속된 변환을 순차적으로 처리할 수 있는 기능을 제공하는 유용한 래퍼(Wrapper) 도구입니다. pipe_lr = make_pipeline(StandardScaler(), PCA(n_components=2), LogisticRegression(solver='liblinear', random_state=1)) pipe_lr.fit(X_train, y_train) y_pred = pipe_lr.predict(X_test) print('테스트 정확도: %.3f' % pipe_lr.score(X_test, y_test))make_pipeline 함수는 사이킷런 변환기(입력에 대해 fit 메서드와 transform 메서드를 지원하는 객체)와 그 뒤..
Machine Learning
2020. 1. 20. 08:19