Skip to content
#

kmeans-clustering

Here are 1,751 public repositories matching this topic...

ychong
ychong commented Feb 8, 2018

Hi I would like to propose a better implementation for 'test_indices':

We can remove the unneeded np.array casting:

Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))

Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))

enhancement good first issue
MLWithPytorch
COVID19-Literature-Clustering

An approach to document exploration using Machine Learning. Let's cluster similar research articles together to make it easier for health professionals and researchers to find relevant research articles.

  • Updated Nov 2, 2021
  • HTML

Improve this page

Add a description, image, and links to the kmeans-clustering topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the kmeans-clustering topic, visit your repo's landing page and select "manage topics."

Learn more