File size: 208 Bytes
932b3cb
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import numpy as np


def kmeans(
    X_train: np.array,
    y_train: np.array,
    args: dict,
):
    # for this alg, the only argument
    # is the number of clusters, k
    # and max iterations

    return