Notice
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
- 리눅스#모의해킹#리눅스명령어#head 명령어
- 파이썬 열
- 파이썬
- 파이썬 채팅
- ROS #Robotics #ROS기초
- 통계 #ROC #TPR #FPR #TNR #이진분류 #Accuracy #Recall
- 파이선 행
- 논문번역 꿀팁
- 파파고 번역
- 파이썬 음성파일 텍스트 변환
- PDF 개행문자
- QGC#QGrouncControl#GLIB오류
- 파파고 꿀팁
- 스트림 암호 one-time-pad 공격#보안#암호
- 크롬오류#크롬검색어자동완성끄기#검색어자동완성오류#검색어자동완성 제거#검색어 노란선#검색어반복입력
- pdf 번역
- 파이썬 예시
- 파이썬 #
- 파이썬 엑셀 파일 읽고 쓰기
- 파이썬 파일 전송
- 패스트 캠퍼스 #자율주행 #비전
- 파이썬 음성인식
- ROS #spin() #spinOnce() #ROS기초
- 파이썬#파이썬경로#파이썬폴더#파이썬디렉토리
- 파이썬 텍스트 변환 #파이썬 공부
- 파이썬 유튜브
- 파이썬 프로젝트
- 리눅스기초#리눅스명령어#리눅스 tail#tail#모의해킹 리눅스
- 파이썬#subprocess#communicate()
- 파이썬 #파이썬프로젝트 #파이썬 예시 #파이썬 파일경로 #파이썬 자동화
Recent Comments
Archives
개발자비행일지
Clustering 이란 본문
Clustering is the task of dividing the entire data into groups (also known as clusters) based on the patterns in the data. There are several clustering methods that can be used, including:
- K-Means Clustering: This is an iterative algorithm that divides a group of n data points into k subgroups based on the mean distance between data points and the centroid of the subgroup.
- Hierarchical Clustering: This method creates a hierarchy of clusters, where at each level, the clusters are joined based on their similarity. There are two types of hierarchical clustering: Agglomerative and Divisive.
- DBSCAN (Density-Based Spatial Clustering of Applications with Noise): This method clusters together points that are close to each other based on a distance measurement (Eps) and a minimum number of points (MinPts) within Eps distance.
- Gaussian Mixture Model: This is a probabilistic model that represents a composite distribution of multiple underlying normal distributions. It is used for clustering when the data is continuous and the clusters are assumed to be spherical.
- Spectral Clustering: This method uses the eigenvectors of a similarity matrix to reduce the dimensionality of the data and then applies K-Means Clustering on the reduced data.
- Affinity Propagation: This method involves each data point sending messages to all other points, indicating their suitability to be a representative, or exemplar, for that point. Points that receive the most similar messages are clustered together.
- Mean-Shift Clustering: This is a non-parametric method that finds the modes (density peaks) of the data distribution and assigns data points to the nearest mode.
'▶Theory' 카테고리의 다른 글
Detection Accuracy : 이진 분류 정확도 개념. TPR, TNR, FPR, FNR (0) | 2024.02.19 |
---|---|
파이 수학기호 의미 수열의 곱: 파이(Π π (0) | 2021.03.31 |
iid(independent and identically distribution)란 (0) | 2021.03.31 |
cardinality 란 (0) | 2021.03.31 |
Covariance 공분산 (0) | 2021.03.26 |