k-Means Assignment Step 2
A 1D cluster currently contains points [1,2,7]. What centroid does k-means assign to that cluster in the update step?
打开 →GLOBAL SEARCH
搜索在服务端完成,题目解析与答案不会进入搜索结果。登录后可搜索自己的收藏题单。
找到 14 个结果
中文题目A 1D cluster currently contains points [1,2,7]. What centroid does k-means assign to that cluster in the update step?
打开 →A 2D cluster contains points (0,0), (2,4), and (4,2). What centroid does k-means assign to that cluster?
打开 →A 1D k-means step has current centroids 0 and 10, and the assigned points are {1,2} to the first cluster and {9} to the second. What are the updated centroids?
打开 →A point in clustering has average within-cluster distance a=2 and smallest average distance to another cluster b=5. What is its silhouette score?
打开 →A 2-component GMM has priors 0.6 and 0.4. At point x, the component likelihoods are 0.1 and 0.3. What posterior responsibility does component 2 get?
打开 →A DBSCAN run uses minPts=5, counting the point itself. A point has 5 neighbors within eps. Is it a core point?
打开 →In 1D, clusters A={0,2} and B={5,9}. What is their average-linkage distance?
打开 →A cluster contains points [1,2,4]. What is its within-cluster SSE around the cluster mean?
打开 →Under Ward linkage, what merge cost increase do two singleton clusters at positions 1 and 4 have in 1D?
打开 →Clusters A={1,4} and B={6,8} are compared under complete linkage in 1D. What distance is used?
打开 →Why can k-means behave poorly when one feature has a much larger scale than the others?
打开 →You expect non-convex moon-shaped clusters plus some noise points. Would you try k-means or DBSCAN first, and why?
打开 →A 2D k-means run has centroids at (0,0) and (4,0). For point x=(1,2), which centroid is closer in the assignment step?
打开 →Why can k-means and a Gaussian mixture with shared spherical covariances give similar clusters, yet still disagree on borderline points?
打开 →