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