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 |
Tags
- kubernetes
- Stress test
- ansible
- java
- 코틀린
- cloud native java
- 클라우드 네이티브 자바
- 쿠버네티스
- 헬름
- Microservice
- cloud native
- 자바
- ingress
- Kotlin
- Semaphore
- Algorithm
- Spring
- Adapter 패턴
- 클라우드 네이티브
- nGrinder
- 마이크로서비스
- 머신러닝
- MSA
- 익명클래스
- 동기화
- MySQL
- decorator 패턴
- spring microservice
- CRD
- devops
Archives
- Today
- Total
목록파이프라인 (1)
카샤의 만개시기
사이킷런의 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