Numpy-Neuron / cluster /kmeans.py
Jensen-holm's picture
starting work with clustering algorithms
932b3cb
raw
history blame
208 Bytes
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