Skip to content

Instantly share code, notes, and snippets.

@dantegd
Created April 28, 2020 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dantegd/95e179996f583f3d3a7085067a806231 to your computer and use it in GitHub Desktop.
Save dantegd/95e179996f583f3d3a7085067a806231 to your computer and use it in GitHub Desktop.
Default input format type mirroring behavior of cuML mirroring NumPy arrays
import cuml
import numpy as np
ary = np.array([[1.0, 4.0, 4.0], [2.0, 2.0, 2.0], [5.0, 1.0, 1.0]])
kmeans = cuml.KMeans(n_clusters=2)
kmeans.fit(ary)
print(type(kmeans.labels_))
# <class ‘numpy.ndarray’>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment