You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please give some hints or direction to perform that . I have followed your code. here I am attaching my data sheet. classification.xlsx
The text was updated successfully, but these errors were encountered:
prashant334
changed the title
I have clustered crime articles based on crime category. But now I want to see whcih article belongs to which category ?
I have clustered crime articles based on crime category. But now I want to see which article belongs to which category ?
Mar 16, 2018
Could you just try this as demonstrated in the notebook? Did you run into errors?
from __future__ import print_function
print("Top terms per cluster:")
print()
#sort cluster centers by proximity to centroid
order_centroids = km.cluster_centers_.argsort()[:, ::-1]
for i in range(num_clusters):
print("Cluster %d words:" % i, end='')
for ind in order_centroids[i, :6]: #replace 6 with n words per cluster
print(' %s' % vocab_frame.ix[terms[ind].split(' ')].values.tolist()[0][0].encode('utf-8', 'ignore'), end=',')
print() #add whitespace
print() #add whitespace
print("Cluster %d titles:" % i, end='')
for title in frame.ix[i]['title'].values.tolist():
print(' %s,' % title, end='')
print() #add whitespace
print() #add whitespace
print()
print()
Please give some hints or direction to perform that . I have followed your code. here I am attaching my data sheet.
classification.xlsx
The text was updated successfully, but these errors were encountered: