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
- java
- 쿠버네티스
- kubernetes
- 마이크로서비스
- decorator 패턴
- 동기화
- 클라우드 네이티브
- spring microservice
- ansible
- CRD
- ingress
- MySQL
- Adapter 패턴
- 머신러닝
- Semaphore
- Algorithm
- Stress test
- devops
- nGrinder
- MSA
- 헬름
- Microservice
- cloud native java
- Spring
- cloud native
- 코틀린
- 자바
- 클라우드 네이티브 자바
- 익명클래스
- Kotlin
Archives
- Today
- Total
목록confusion matrix (1)
카샤의 만개시기
오차 행렬(Confusion Matrix) 진짜 양성 (TN : True Positive) 진짜 음성 (TN : True Negative) 거짓 양성 (FP : False Positive) 거짓 음성 (FN : False Negative) 상세 예제 : 구글 머신러닝 단기 집중과정 오차 행렬은 사이킷런에서 제공하는 confusion_matrix함수를 이용하여 편리하게 사용할수 있습니다. from sklearn.metrics import confusion_matrix pipe_svc.fit(X_train, y_train) y_pred = pipe_svc.predict(X_test) confmat = confusion_matrix(y_true=y_test, y_pred=y_pred) print(confmat..
Machine Learning
2020. 1. 20. 13:01