Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add doc of mo_ctl #1098

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SELECT cluster_centers(col kmeans 'k, op_type, init_type, normalize') FROM tbl;
| col | 必需的。要确定聚类中心的向量列。|
| k | 必需的。要将数据集分成的簇的数量,大于 0,小于等于总行数。|
| op_type| 必需的。在聚类计算过程中使用的距离函数。目前支持 vector_l2_ops。|
| init_type | 必需的。要使用的初始化聚类中心算法。目前我们支持 random 和 kmeanspluspus(K-means++)。|
| init_type | 必需的。要使用的初始化聚类中心算法。目前我们支持 random 和 kmeansplusplus(K-means++)。|
| normalize | 必需的。布尔值,要使用的聚类算法,true 代表 Spherical Kmeans,false 代表 Regular Kmeans。|

## 示例
Expand Down
Loading
Loading