I am fairly new with working with text data.
I have a data frame of about 300,000 unique product names and I am trying to use k means to cluster similar names together. I used sklearn's tfidfvectorizer to vectorize the names and convert to a tf-idf matrix.
After I transformed it to a sparse matrix I fit k means with 5-10 clusters but I do not know if I am converging.
How can I figure this out?