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
- 자바
- ansible
- 익명클래스
- devops
- Stress test
- 헬름
- cloud native
- CRD
- 쿠버네티스
- decorator 패턴
- cloud native java
- nGrinder
- Spring
- Kotlin
- Microservice
- MySQL
- 코틀린
- ingress
- Algorithm
- 마이크로서비스
- 클라우드 네이티브
- 클라우드 네이티브 자바
- spring microservice
- Semaphore
- 머신러닝
- java
- MSA
- kubernetes
- Adapter 패턴
- 동기화
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